Files
forex-dashboard/app/layout.tsx
T
2026-06-02 23:01:51 +02:00

16 lines
418 B
TypeScript

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-[#090e1a]">{children}</body>
</html>
);
}