xpeditis2.0/apps/frontend/app/layout.tsx
2025-10-31 12:38:05 +01:00

21 lines
533 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
import { manrope, montserrat } from '@/lib/fonts';
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">{children}</body>
</html>
);
}