fix: shacn dashboard location
This commit is contained in:
parent
0c6dc297a1
commit
0a8f9da009
16
src/app/(frontend)/dashboard/layout.tsx
Normal file
16
src/app/(frontend)/dashboard/layout.tsx
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
export const metadata = {
|
||||||
|
title: 'Next.js',
|
||||||
|
description: 'Generated by Next.js',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function RootLayout({
|
||||||
|
children,
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<html lang="en">
|
||||||
|
<body>{children}</body>
|
||||||
|
</html>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -1,17 +1,13 @@
|
|||||||
import { SidebarLeft } from "@/components/sidebar-left"
|
import { SidebarLeft } from '@/components/sidebar-left'
|
||||||
import { SidebarRight } from "@/components/sidebar-right"
|
import { SidebarRight } from '@/components/sidebar-right'
|
||||||
import {
|
import {
|
||||||
Breadcrumb,
|
Breadcrumb,
|
||||||
BreadcrumbItem,
|
BreadcrumbItem,
|
||||||
BreadcrumbList,
|
BreadcrumbList,
|
||||||
BreadcrumbPage,
|
BreadcrumbPage,
|
||||||
} from "@/components/ui/breadcrumb"
|
} from '@/components/ui/breadcrumb'
|
||||||
import { Separator } from "@/components/ui/separator"
|
import { Separator } from '@/components/ui/separator'
|
||||||
import {
|
import { SidebarInset, SidebarProvider, SidebarTrigger } from '@/components/ui/sidebar'
|
||||||
SidebarInset,
|
|
||||||
SidebarProvider,
|
|
||||||
SidebarTrigger,
|
|
||||||
} from "@/components/ui/sidebar"
|
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return (
|
return (
|
||||||
Loading…
x
Reference in New Issue
Block a user