From 202d2075a692fdb9db6dc8884767f39404dd4ae7 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Wed, 22 Oct 2025 21:56:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20add=20blueprint=20to=20the=20sid?= =?UTF-8?q?ebar=20and=20scaffold=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/[orgId]/settings/blueprints/page.tsx | 14 ++++++++++++++ src/app/navigation.tsx | 13 +++++++++---- 2 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 src/app/[orgId]/settings/blueprints/page.tsx 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: } ] },