// app/layout.jsx import "./globals.css"; import { Inter } from "next/font/google"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "DMS", description: "Document Management System", }; export default function RootLayout({ children }) { return (
{/* Sidebar */} {/* Main content */}
{/* Top Navbar */}
Laem Chabang Port Phase 3
superadmin
{children}
); }