The HyperionDB marketing site, built with Next.js (App Router). The home page is a "coming soon" landing page with an email-notify form.
Run the development server:
npm run devOpen http://localhost:3000 to view it.
app/page.tsx— home page (Server Component).app/signup-form.tsx— email-notify form (Client Component).app/layout.tsx— root layout and page metadata.app/globals.css— global styles and the ported landing-page component CSS.app/colors_and_type.css— design tokens (colors, type scale, spacing, radii, shadows, motion).app/icon.svg— favicon.public/orbit-motif.svg— ambient background motif.
Hanken Grotesk + JetBrains Mono are self-hosted via next/font (no external requests, no layout shift). The loader is set up in app/layout.tsx, which exposes --font-hanken / --font-jetbrains-mono; app/globals.css maps the design tokens --font-sans / --font-mono onto them. app/colors_and_type.css is kept verbatim from the design source.
Deploy on any platform that supports Next.js. See the Next.js deployment docs.