// app.jsx — Page composition + tweaks const { useState, useEffect, useRef, useMemo } = React; const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{ "hero": "neural", "palette": "iridescent", "autoRotate": true, "tagline": "The Future of Intelligence Starts Here.", "showFAQ": true }/*EDITMODE-END*/; const TAGLINE_OPTIONS = [ "The Future of Intelligence Starts Here.", "An instrument of mind.", "The substrate of intelligence.", "Where superintelligence takes a name.", "A flagship for the post-human era.", ]; // ----- Icons (line-glyph SVGs) ----- const Glyph = { Diamond: (p) => ( ), Lock: (p) => ( ), Globe: (p) => ( ), Spark: (p) => ( ), Vault: (p) => ( ), Compass: (p) => ( ), }; // ----- Nav ----- function Nav() { return ( ); } // ----- Hero ----- function Hero({ tagline }) { return (
Premium Domain · Available for Acquisition

godmodel.com

{tagline}

Listed on Sedo · Marketplace
Status ● Available · Accepting Offers
Category AI · AGI · ASI
Scroll
); } // ----- Etymology / Naming ----- function Etymology() { return (
01 The Name

A two-syllable thesis on what intelligence becomes.

godmodel

"a model with the breadth, capability, and authority that ends the era of incremental scaling — the model after which there is no 'next model.'"

Reads as A serious, declarative product name — the kind a frontier lab uses for its final release line.
Sounds as Stress on the first syllable. Memorable in the way "hyperscale" or "foundation" never quite were.
Adjacent to Foundation Model · World Model · Frontier Model — but with the ceiling built into the name itself.
Owns A category that doesn't exist yet, but will. The branding asset for the lab that gets there first.
); } // ----- Value props ----- function ValueGrid() { const cells = [ { glyph: , title: 'Category-defining', body: 'Eight letters. One concept. Names this strong don\'t sit on the shelf — they reorder the category around them.', }, { glyph: , title: 'Built for the frontier', body: 'Reads as a peer to Anthropic, OpenAI, DeepMind. A name that doesn\'t flinch at the ambitions of an AGI roadmap.', }, { glyph: , title: 'Universally legible', body: 'No hyphens, no numerals, no non-native phonemes. Pronounceable on every continent, in every press cycle.', }, { glyph: , title: 'Singular asset', body: 'There is one godmodel.com. Defensible at the registry layer, the trademark layer, and the cultural layer.', }, { glyph: , title: 'Strategic optionality', body: 'Anchor a research lab. Brand a flagship model. Stake a venture thesis. The name is the position.', }, { glyph: , title: 'Escrow protected', body: 'Transferred via Sedo with full escrow. No counter-party risk, full chain of custody, white-glove handoff.', }, ]; return (
02 Why It Matters

A name is the cheapest form of leverage you'll ever buy.

Every category-leading company was named before it was built. Stripe. Anthropic. OpenAI. The name set the ceiling. Buying the right one early is the highest-ROI move on the cap table.

{cells.map((c, i) => (
{String(i + 1).padStart(2, '0')} / {String(cells.length).padStart(2, '0')}
{c.glyph}

{c.title}

{c.body}

))}
); } // ----- Buyer profile ----- function BuyerProfile() { const buyers = [ { tag: 'Frontier Lab', title: 'Research organizations chasing AGI / ASI', body: 'Anchor your model line. Own the URL where your scaling roadmap ends.' }, { tag: 'AI-First Startup', title: 'Companies whose product is the model', body: 'A wordmark that sounds like Series-D the day you pick it up.' }, { tag: 'Think Tank', title: 'Policy & alignment institutes', body: 'A neutral, declarative home for long-horizon AI safety research.' }, { tag: 'Strategic Holder', title: 'Investors and brand portfolios', body: 'Tier-1 generic. Appreciates with the category. Trades on Sedo.' }, ]; const cardRefs = useRef([]); useEffect(() => { const handlers = cardRefs.current.map((el, i) => { if (!el) return null; const fn = (e) => { const r = el.getBoundingClientRect(); el.style.setProperty('--mx', `${e.clientX - r.left}px`); el.style.setProperty('--my', `${e.clientY - r.top}px`); }; el.addEventListener('mousemove', fn); return { el, fn }; }); return () => handlers.forEach(h => h && h.el.removeEventListener('mousemove', h.fn)); }, []); return (
03 Who This Is For

Four kinds of buyer. One domain.

If you see yourself in any of these rows, the math has already worked itself out. Reach out before someone else does.

{buyers.map((b, i) => (
cardRefs.current[i] = el}>
{b.tag}

{b.title}

{b.body}

))}
); } // ----- Marquee ----- function Marquee() { const phrase = ( Foundation Model Frontier Lab AGI Roadmap World Model Superintelligence Alignment Post-AGI ); return (
{phrase}{phrase}{phrase}
); } // ----- FAQ ----- function FAQ() { const items = [ { q: 'What\'s the asking price?', a: 'Bring a serious offer. The domain is listed on Sedo with their secure offer flow; we evaluate every inquiry that arrives through the marketplace.' }, { q: 'How does the transfer work?', a: 'Sedo handles the entire transaction — escrow, registrar push, and ownership change. Funds release only after the domain is in your registrar account. Standard transfer is 3–7 business days.' }, { q: 'Why list on Sedo?', a: 'Sedo is the largest neutral marketplace for premium domains. It exists so neither side has to trust the other — only the escrow.' }, ]; const [open, setOpen] = useState(0); return (
04 Acquisition FAQ

Everything a serious buyer asks before the first email.

{items.map((it, i) => (
setOpen(open === i ? -1 : i)}>
{it.q} +
{it.a}
))}
); } // ----- CTA ----- function CTA() { return (
05 Acquisition

Ready to Shape the Future?

All inquiries route through Sedo's secure marketplace. Escrow, transfer, and ownership change are handled end-to-end. No back-channel, no broker games — just the cleanest path from your name to a category-defining domain.

Make an offer on Sedo
Secure Escrow 3M+ Buyers Verified Transfer No-touch Process
); } function Footer() { return (
© 2026 GODMODEL.COM · Premium AI Domain
Listed on Sedo · Drag the orb · Scroll to fly
); } // ----- Tweaks panel ----- function Tweaks({ tweaks, setTweak }) { return ( setTweak('autoRotate', v)} /> setTweak('palette', v)} options={[ { value: 'iridescent', label: 'Iri' }, { value: 'obsidian', label: 'Obs' }, { value: 'plasma', label: 'Plas' }, { value: 'aurora', label: 'Aur' }, { value: 'solar', label: 'Sol' }, ]} /> setTweak('tagline', v)} options={TAGLINE_OPTIONS.map(t => ({ value: t, label: t }))} /> setTweak('tagline', v)} /> setTweak('showFAQ', v)} /> ); } // ----- Root ----- function App() { const [tweaks, setTweak] = useTweaks(TWEAK_DEFAULTS); const sceneRef = useRef(null); // Boot Three.js scene once useEffect(() => { const canvas = document.getElementById('hero-canvas'); sceneRef.current = window.HeroScene.create(canvas); return () => sceneRef.current && sceneRef.current.destroy(); }, []); // Apply tweaks useEffect(() => { sceneRef.current && sceneRef.current.setVariant(tweaks.hero); }, [tweaks.hero]); useEffect(() => { sceneRef.current && sceneRef.current.setPalette(tweaks.palette); }, [tweaks.palette]); useEffect(() => { sceneRef.current && sceneRef.current.setAutoRotate(tweaks.autoRotate); }, [tweaks.autoRotate]); // Apply CSS palette accents to match useEffect(() => { const map = { iridescent: { accent: '#c4b5fd', accent2: '#fcd5b5', accent3: '#a8e6ff', bg: '#07070a' }, obsidian: { accent: '#d6d2c8', accent2: '#ffffff', accent3: '#8b8680', bg: '#050507' }, plasma: { accent: '#ff4d8f', accent2: '#00e0ff', accent3: '#8a2be2', bg: '#06030d' }, aurora: { accent: '#6ee7b7', accent2: '#a8e6ff', accent3: '#c4b5fd', bg: '#040b0a' }, solar: { accent: '#fcd5b5', accent2: '#ff8a3d', accent3: '#ffe27a', bg: '#0a0703' }, }; const p = map[tweaks.palette] || map.iridescent; document.documentElement.style.setProperty('--accent', p.accent); document.documentElement.style.setProperty('--accent-2', p.accent2); document.documentElement.style.setProperty('--accent-3', p.accent3); document.documentElement.style.setProperty('--bg', p.bg); }, [tweaks.palette]); return ( <>