Files
forex-dashboard/app/layout.tsx
T

16 lines
416 B
TypeScript
Raw Normal View History

2026-05-27 13:18:45 +02:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Forex Macro Dashboard",
description: "Tableau de bord macroéconomique Forex — 8 devises majeures",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="fr">
<body className="min-h-screen bg-gray-50">{children}</body>
</html>
);
}