32 lines
763 B
TypeScript
32 lines
763 B
TypeScript
// File: app/layout.tsx
|
|
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css"; // Import CSS Variables
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "LCBP3-DMS",
|
|
description: "Document Management System for Laem Chabang Port Phase 3",
|
|
};
|
|
|
|
interface RootLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<head />
|
|
<body
|
|
className={cn(
|
|
"min-h-screen bg-background font-sans antialiased",
|
|
inter.className
|
|
)}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |