gendesign/frontend/src/app/page.tsx
lekss361 b132091fe7 docs+memory: HTTPS live, Apr26 catch-up
- 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)
2026-04-26 14:50:17 +03:00

22 lines
656 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>
</ul>
{/* TODO: REMOVE BEFORE INVESTOR / CLIENT DEMO — internal easter egg for Anton */}
<p style={{ marginTop: 48, color: "#f30909", fontSize: 12 }}>
антон ты пидр
</p>
</main>
);
}