xpeditis2.0/apps/frontend/app/layout.tsx
2025-11-04 07:30:15 +01:00

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>
);
}