gendesign/frontend/src/app/page.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

25 lines
785 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from "next/link";
export default function HomePage() {
return (
<main style={{ padding: 24, maxWidth: 800, margin: "0 auto" }}>
<h1>GenDesign</h1>
<p>Generative Design + Site Finder Discovery MVP</p>
<ul>
<li>
<Link href="/concept">Concept (Generative Design)</Link>
</li>
<li>
<Link href="/site-finder">Site Finder</Link>
</li>
<li>
<Link href="/analytics">Аналитика Свердл рынок &amp; PRINZIP</Link>
</li>
</ul>
{/* TODO: REMOVE BEFORE INVESTOR / CLIENT DEMO — internal easter egg for Anton */}
<p style={{ marginTop: 48, color: "#f30909", fontSize: 12 }}>
антон ты пидр
</p>
</main>
);
}