mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 16:56:39 +00:00
🚧 add blueprint to the sidebar and scaffold page
This commit is contained in:
14
src/app/[orgId]/settings/blueprints/page.tsx
Normal file
14
src/app/[orgId]/settings/blueprints/page.tsx
Normal 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 <></>
|
||||||
|
}
|
||||||
@@ -1,22 +1,22 @@
|
|||||||
import { SidebarNavItem } from "@app/components/SidebarNav";
|
import { SidebarNavItem } from "@app/components/SidebarNav";
|
||||||
import { build } from "@server/build";
|
import { build } from "@server/build";
|
||||||
import {
|
import {
|
||||||
Home,
|
|
||||||
Settings,
|
Settings,
|
||||||
Users,
|
Users,
|
||||||
Link as LinkIcon,
|
Link as LinkIcon,
|
||||||
Waypoints,
|
Waypoints,
|
||||||
Combine,
|
Combine,
|
||||||
Fingerprint,
|
Fingerprint,
|
||||||
Workflow,
|
|
||||||
KeyRound,
|
KeyRound,
|
||||||
TicketCheck,
|
TicketCheck,
|
||||||
User,
|
User,
|
||||||
Globe, // Added from 'dev' branch
|
Globe, // Added from 'dev' branch
|
||||||
MonitorUp, // Added from 'dev' branch
|
MonitorUp, // Added from 'dev' branch
|
||||||
Server,
|
Server,
|
||||||
Zap,
|
CreditCard,
|
||||||
CreditCard
|
Bolt,
|
||||||
|
ScanText,
|
||||||
|
ReceiptText
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
|
|
||||||
export type SidebarNavSection = {
|
export type SidebarNavSection = {
|
||||||
@@ -74,6 +74,11 @@ export const orgNavSections = (
|
|||||||
title: "sidebarDomains",
|
title: "sidebarDomains",
|
||||||
href: "/{orgId}/settings/domains",
|
href: "/{orgId}/settings/domains",
|
||||||
icon: <Globe className="h-4 w-4" />
|
icon: <Globe className="h-4 w-4" />
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "sidebarBluePrints",
|
||||||
|
href: "/{orgId}/settings/blueprints",
|
||||||
|
icon: <ReceiptText className="h-4 w-4" />
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user