- README: status table reflects HTTPS-live state - memory: +HTTPS_Live_Apr26 entity (the chain ESIA→DNS→cert, caddy_data wipe needed to clear staging-fallback retry queue)
22 lines
656 B
TypeScript
22 lines
656 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>
|
||
</ul>
|
||
{/* TODO: REMOVE BEFORE INVESTOR / CLIENT DEMO — internal easter egg for Anton */}
|
||
<p style={{ marginTop: 48, color: "#f30909", fontSize: 12 }}>
|
||
антон ты пидр
|
||
</p>
|
||
</main>
|
||
);
|
||
}
|