Files
gh-hopeoverture-worldbuildi…/skills/tailwind-shadcn-ui-setup/assets/app/examples/layout.tsx
2025-11-29 18:46:58 +08:00

33 lines
578 B
TypeScript

import { AppShell } from '@/components/app-shell'
import { FileText, Palette, SquareStack } from 'lucide-react'
const navigation = [
{
title: 'Forms',
href: '/examples/forms',
icon: FileText,
},
{
title: 'Dialogs',
href: '/examples/dialogs',
icon: SquareStack,
},
{
title: 'Theme',
href: '/examples/theme',
icon: Palette,
},
]
export default function ExamplesLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<AppShell navigation={navigation} siteTitle="Examples">
{children}
</AppShell>
)
}