Skip to content

Commit

Permalink
Reorganize resources.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Sep 3, 2024
1 parent b8898aa commit dc18da5
Showing 1 changed file with 35 additions and 11 deletions.
46 changes: 35 additions & 11 deletions client/src/sections/ResourceSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ import ModelTrainSet from "./resources/2022/ModelTrainSet";
import TinyStillsuit from "./resources/2022/TinyStillsuit";
import UnbreakableUmbrella from "./resources/2022/UnbreakableUmbrella";
import MrStore2002 from "./resources/2023/2002Catalog";
import BurningLeaves from "./resources/2023/AGuidetoBurningLeaves";
import AugustScepter from "./resources/2023/AugustScepter";
import BookOfFacts from "./resources/2023/BookOfFacts";
import CandyCaneSwordCane from "./resources/2023/CandyCaneSwordCane";
import CinchoDeMayo from "./resources/2023/CinchoDeMayo";
import ClosedCircuitPayPhone from "./resources/2023/ClosedCircuitPayPhone";
import CursedMonkeysPaw from "./resources/2023/CursedMonkeyPaw";
import JillOfAllTrades from "./resources/2023/JillOfAllTrades";
import PatrioticEagle from "./resources/2023/PatrioticEagle";
import RockGarden from "./resources/2023/RockGarden";
import SITCertificate from "./resources/2023/SITCourseCertificate";
import AprilingBandHelmet from "./resources/2024/AprilingBandHelmet";
Expand All @@ -39,23 +45,30 @@ import SpringShoes from "./resources/2024/SpringShoes";
import TearawayPants from "./resources/2024/TearawayPants";
import FreeFights from "./resources/FreeFights";

// TODO: Organize by functionality, not release.
const ResourceSection = () => (
<Section name="Resources">
<FreeFights />
<BackupCamera />
<ColdMedicineCabinet />
<EmotionChip />
{/* 2020 */}
<PowerfulGlove />
<Melodramedary />
<CosmicBowlingBall />
<Cartography />
<PowerfulGlove />
<CursedMagnifyingGlass />
<DaylightShavingsHelmet />
<UndergroundFireworksShop />
<CommerceGhost />

{/* 2021 */}
<BackupCamera />
<EmotionChip />
<UndergroundFireworksShop />
<IndustrialFireExtinguisher />
<DaylightShavingsHelmet />
<ColdMedicineCabinet />

{/* 2022 */}
<CursedMagnifyingGlass />
<CosmicBowlingBall />
<CombatLoversLocketTile />
<GreyGoose />
<UnbreakableUmbrella />
<MayDayPackage />
<JuneCleaver />
<DesignerSweatpants />
Expand All @@ -64,21 +77,32 @@ const ResourceSection = () => (
<Autumnaton />
<Cookbookbat />
<ModelTrainSet />

{/* 2023 */}
<RockGarden />
<SITCertificate />
<ClosedCircuitPayPhone />
<CursedMonkeysPaw />
<CinchoDeMayo />
<MrStore2002 />
<UnbreakableUmbrella />
<AprilingBandHelmet />
<PatrioticEagle />
<AugustScepter />
<BookOfFacts />
<JillOfAllTrades />
<BurningLeaves />
<CandyCaneSwordCane />

{/* 2024 */}
<ChestMimic />
<SpringShoes />
<EverfullDartHolster />
<AprilingBandHelmet />
<MayamCalendar />
<MiniKiwi />
<RomanCandelabra />
<SpringShoes />
<TearawayPants />

{/* Nags only */}
<BeatenUp />
</Section>
);
Expand Down

0 comments on commit dc18da5

Please sign in to comment.