690522:2125 ADR-028-228 #02
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
// File: app/layout.tsx
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
import { cn } from '@/lib/utils';
|
||||
import QueryProvider from '@/providers/query-provider';
|
||||
@@ -10,8 +9,6 @@ import { Toaster } from '@/components/ui/sonner';
|
||||
import { headers } from 'next/headers';
|
||||
import { AiStatusBannerHost } from '@/components/ai/ai-status-banner-host';
|
||||
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'LCBP3-DMS',
|
||||
description: 'Document Management System for Laem Chabang Port Phase 3',
|
||||
@@ -27,7 +24,7 @@ export default async function RootLayout({ children }: RootLayoutProps) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<head />
|
||||
<body className={cn('min-h-screen bg-background font-sans antialiased', inter.className)}>
|
||||
<body className={cn('min-h-screen bg-background font-sans antialiased')}>
|
||||
<SessionProvider>
|
||||
<ThemeProvider nonce={nonce}>
|
||||
<QueryProvider>
|
||||
|
||||
Reference in New Issue
Block a user