This commit is contained in:
Owen Schwartz
2024-10-19 17:30:15 -04:00
23 changed files with 695 additions and 451 deletions

View File

@@ -20,6 +20,21 @@ export const metadata: Metadata = {
description: "Advanced form example using react-hook-form and Zod.",
};
const sidebarNavItems = [
{
title: "Profile",
href: "/{orgId}/resources/{resourceId}",
},
// {
// title: "Appearance",
// href: "/{orgId}/resources/{resourceId}/appearance",
// },
// {
// title: "Notifications",
// href: "/{orgId}/resources/{resourceId}/notifications",
// },
]
interface SettingsLayoutProps {
children: React.ReactNode;
params: { resourceId: string; orgId: string };