20 lines
618 B
TypeScript
20 lines
618 B
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
import { manrope, montserrat } from '@/lib/fonts';
|
|
import { Providers } from '@/components/providers';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Xpeditis - Maritime Freight Booking Platform',
|
|
description: 'Search, compare, and book maritime freight in real-time',
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="fr" className={`${manrope.variable} ${montserrat.variable}`}>
|
|
<body className="font-body">
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|