🚧 add blueprint to the sidebar and scaffold page

This commit is contained in:
Fred KISSIE
2025-10-22 21:56:26 +02:00
parent e575fae73b
commit 202d2075a6
2 changed files with 23 additions and 4 deletions

View File

@@ -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 <></>
}

View File

@@ -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: <Globe className="h-4 w-4" />
},
{
title: "sidebarBluePrints",
href: "/{orgId}/settings/blueprints",
icon: <ReceiptText className="h-4 w-4" />
}
]
},