mirror of
https://github.com/caty21/forex-dashboard.git
synced 2026-07-27 20:37:45 +00:00
16 lines
416 B
TypeScript
16 lines
416 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-gray-50">{children}</body>
|
|
</html>
|
|
);
|
|
}
|