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.
25 lines
785 B
TypeScript
25 lines
785 B
TypeScript
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">Аналитика — Свердл рынок & 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>
|
||
);
|
||
}
|