gendesign/frontend/src/app/layout.tsx
lekss361 8d3a0874ef add interactive analytics dashboard for Sverdlovsk market and PRINZIP
3 pages (market, PRINZIP drilldown, developers leaderboard) on top of
existing v_developer_full_metrics + domrf_realization views. ECharts on
the frontend, FastAPI router /api/v1/analytics on the backend.
2026-04-27 16:55:30 +03:00

28 lines
569 B
TypeScript

import type { Metadata } from "next";
import { Providers } from "./providers";
export const metadata: Metadata = {
title: "GenDesign",
description: "Generative Design + Site Finder",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="ru">
<body
style={{
margin: 0,
fontFamily:
"system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
}}
>
<Providers>{children}</Providers>
</body>
</html>
);
}