sourcebot/packages/web/src/app/[domain]/settings/layout.tsx

66 lines
2 KiB
TypeScript
Raw Normal View History

2025-02-12 22:55:35 +00:00
import { Metadata } from "next"
import Image from "next/image"
2025-01-23 18:26:41 +00:00
2025-02-12 22:55:35 +00:00
import { Separator } from "@/components/ui/separator"
import { SidebarNav } from "./components/sidebar-nav"
import { NavigationMenu } from "../components/navigationMenu"
export const metadata: Metadata = {
title: "Settings",
}
export default function SettingsLayout({
2025-01-23 18:26:41 +00:00
children,
2025-02-12 21:05:44 +00:00
params: { domain },
2025-01-23 18:26:41 +00:00
}: Readonly<{
children: React.ReactNode;
2025-02-12 21:05:44 +00:00
params: { domain: string };
2025-01-23 18:26:41 +00:00
}>) {
2025-02-12 22:55:35 +00:00
const sidebarNavItems = [
{
title: "Members",
href: `/${domain}/settings`,
},
{
title: "Billing",
href: `/${domain}/settings/billing`,
}
]
2025-01-23 18:26:41 +00:00
return (
2025-02-12 22:55:35 +00:00
<>
<div className="md:hidden">
<Image
src="/examples/forms-light.png"
width={1280}
height={791}
alt="Forms"
className="block dark:hidden"
/>
<Image
src="/examples/forms-dark.png"
width={1280}
height={791}
alt="Forms"
className="hidden dark:block"
/>
</div>
2025-02-12 21:05:44 +00:00
<NavigationMenu domain={domain} />
2025-02-12 22:55:35 +00:00
<div className="hidden space-y-6 p-10 pb-16 md:block">
<div className="space-y-0.5">
<h2 className="text-2xl font-bold tracking-tight">Settings</h2>
<p className="text-muted-foreground">
Manage your organization settings.
</p>
</div>
<Separator className="my-6" />
<div className="flex flex-col space-y-8 lg:flex-row lg:space-x-12 lg:space-y-0">
<aside className="-mx-4 lg:w-1/5">
<SidebarNav items={sidebarNavItems} />
</aside>
<div className="flex-1 lg:max-w-2xl">{children}</div>
</div>
</div>
</>
2025-01-23 18:26:41 +00:00
)
}