36 lines
883 B
TypeScript
36 lines
883 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import { Inter, JetBrains_Mono } from 'next/font/google';
|
||
|
|
import { Toaster } from 'sonner';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
const inter = Inter({
|
||
|
|
subsets: ['latin'],
|
||
|
|
variable: '--font-sans',
|
||
|
|
display: 'swap',
|
||
|
|
});
|
||
|
|
|
||
|
|
const jetbrainsMono = JetBrains_Mono({
|
||
|
|
subsets: ['latin'],
|
||
|
|
variable: '--font-mono',
|
||
|
|
display: 'swap',
|
||
|
|
});
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: {
|
||
|
|
default: 'Port Nimara CRM',
|
||
|
|
template: '%s | Port Nimara CRM',
|
||
|
|
},
|
||
|
|
description: 'Marina management system for Port Nimara',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<html lang="en" suppressHydrationWarning>
|
||
|
|
<body className={`${inter.variable} ${jetbrainsMono.variable} font-sans antialiased`}>
|
||
|
|
{children}
|
||
|
|
<Toaster richColors position="top-right" />
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|