diff --git a/src/app/[orgId]/settings/blueprints/page.tsx b/src/app/[orgId]/settings/blueprints/page.tsx new file mode 100644 index 00000000..c37b88c1 --- /dev/null +++ b/src/app/[orgId]/settings/blueprints/page.tsx @@ -0,0 +1,14 @@ + + + + + +type BluePrintsPageProps = { + params: Promise<{ orgId: string }>; + searchParams: Promise<{ view?: string }>; +}; + +export default async function BluePrintsPage(props: BluePrintsPageProps) { + const params = await props.params; + return <> +} \ No newline at end of file diff --git a/src/app/navigation.tsx b/src/app/navigation.tsx index 2d6aaec8..028a6f23 100644 --- a/src/app/navigation.tsx +++ b/src/app/navigation.tsx @@ -1,22 +1,22 @@ import { SidebarNavItem } from "@app/components/SidebarNav"; import { build } from "@server/build"; import { - Home, Settings, Users, Link as LinkIcon, Waypoints, Combine, Fingerprint, - Workflow, KeyRound, TicketCheck, User, Globe, // Added from 'dev' branch MonitorUp, // Added from 'dev' branch Server, - Zap, - CreditCard + CreditCard, + Bolt, + ScanText, + ReceiptText } from "lucide-react"; export type SidebarNavSection = { @@ -74,6 +74,11 @@ export const orgNavSections = ( title: "sidebarDomains", href: "/{orgId}/settings/domains", icon: + }, + { + title: "sidebarBluePrints", + href: "/{orgId}/settings/blueprints", + icon: } ] },