Files
forex-dashboard/app/layout.tsx
T

16 lines
418 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">
2026-06-02 23:01:51 +02:00
<body className="min-h-screen bg-[#090e1a]">{children}</body>
2026-05-27 13:18:45 +02:00
</html>
);
}