diff --git a/client/pages/ArmFeeds.tsx b/client/pages/ArmFeeds.tsx new file mode 100644 index 00000000..361e6598 --- /dev/null +++ b/client/pages/ArmFeeds.tsx @@ -0,0 +1,42 @@ +import { useParams } from "react-router-dom"; +import ArmFeed from "@/components/feed/ArmFeed"; +import { ArmType } from "@/components/feed/ArmFeed"; + +// Map URL paths to arm types +const ARM_MAP: Record = { + labs: "labs", + gameforge: "gameforge", + corp: "corp", + foundation: "foundation", + devlink: "devlink", + nexus: "nexus", + staff: "staff", +}; + +export function LabsFeed() { + return ; +} + +export function GameForgeFeed() { + return ; +} + +export function CorpFeed() { + return ; +} + +export function FoundationFeed() { + return ; +} + +export function DevLinkFeed() { + return ; +} + +export function NexusFeed() { + return ; +} + +export function StaffFeed() { + return ; +}