|
| 1 | +import Layout from '@/components/Layout/Layout'; |
| 2 | +import Link from 'next/link'; |
| 3 | +import { Container } from '@mantine/core'; |
| 4 | + |
| 5 | +const options = [ |
| 6 | + { |
| 7 | + id: 1, |
| 8 | + label: 'Read. Compute. Write.', |
| 9 | + angle: 'Developer-forward', |
| 10 | + pitch: |
| 11 | + 'Leads with the primitive: read anywhere, compute in a TEE, write to any chain or API. Hero is a real code snippet. For people who want to understand what it actually is in 30 seconds.', |
| 12 | + accent: 'text-mint-500', |
| 13 | + }, |
| 14 | + { |
| 15 | + id: 2, |
| 16 | + label: 'The Programmable Oracle', |
| 17 | + angle: 'Infrastructure positioning', |
| 18 | + pitch: |
| 19 | + 'Positions Lit against traditional oracles, bridges, and "trust me" backends. Leans hard on the chain-secured TEE story. For people evaluating infra and comparing options.', |
| 20 | + accent: 'text-lit-orange', |
| 21 | + }, |
| 22 | + { |
| 23 | + id: 3, |
| 24 | + label: 'Cross-Chain, Cross-API', |
| 25 | + angle: 'Use-case forward', |
| 26 | + pitch: |
| 27 | + 'Opens with the outcome: connect any chain to any API. Interactive flow viewer lets visitors click through 6 concrete patterns (rebalancer, agent, oracle, webhook bridges). For people who want to see "is this for me?".', |
| 28 | + accent: 'text-electric-blue-500', |
| 29 | + }, |
| 30 | +]; |
| 31 | + |
| 32 | +export default function PrototypesIndex() { |
| 33 | + return ( |
| 34 | + <Layout> |
| 35 | + <div className="bg-coal-950 text-off-white min-h-screen"> |
| 36 | + <Container size="md" className="!py-24"> |
| 37 | + <div className="mb-12"> |
| 38 | + <span className="font-mono text-xs uppercase tracking-[0.2em] text-white/40"> |
| 39 | + Landing page prototypes · for review |
| 40 | + </span> |
| 41 | + <h1 className="mt-4 !text-4xl md:!text-6xl font-medium leading-tight"> |
| 42 | + Reorienting the site around{' '} |
| 43 | + <span className="text-mint-500">read · compute · write</span>. |
| 44 | + </h1> |
| 45 | + <p className="mt-6 text-white/70 max-w-2xl"> |
| 46 | + Three different ways to frame Lit as the TEE-secured runtime for |
| 47 | + cross-chain and cross-API workflows. Each is a full landing page |
| 48 | + you can scroll. Switcher at the bottom of each lets you flip |
| 49 | + between them. |
| 50 | + </p> |
| 51 | + </div> |
| 52 | + |
| 53 | + <div className="space-y-4"> |
| 54 | + {options.map((o) => ( |
| 55 | + <Link |
| 56 | + key={o.id} |
| 57 | + href={`/prototypes/${o.id}`} |
| 58 | + className="block border border-white/10 rounded-xl p-6 hover:border-white/30 hover:bg-white/[0.02] transition group" |
| 59 | + > |
| 60 | + <div className="flex items-baseline justify-between mb-2"> |
| 61 | + <div className="flex items-baseline gap-4"> |
| 62 | + <span className="font-mono text-xs text-white/40"> |
| 63 | + 0{o.id} |
| 64 | + </span> |
| 65 | + <span |
| 66 | + className={`font-mono text-xs uppercase tracking-widest ${o.accent}`} |
| 67 | + > |
| 68 | + {o.angle} |
| 69 | + </span> |
| 70 | + </div> |
| 71 | + <span className="text-white/30 group-hover:text-white transition"> |
| 72 | + → |
| 73 | + </span> |
| 74 | + </div> |
| 75 | + <div className="text-3xl font-medium mb-2">{o.label}</div> |
| 76 | + <div className="text-white/60 text-sm max-w-2xl">{o.pitch}</div> |
| 77 | + </Link> |
| 78 | + ))} |
| 79 | + </div> |
| 80 | + |
| 81 | + <div className="mt-16 text-white/40 text-sm"> |
| 82 | + ↳ Once you pick a direction (or a remix), the existing{' '} |
| 83 | + <Link href="/" className="underline hover:text-white"> |
| 84 | + homepage |
| 85 | + </Link>{' '} |
| 86 | + sections can be replaced wholesale. |
| 87 | + </div> |
| 88 | + </Container> |
| 89 | + </div> |
| 90 | + </Layout> |
| 91 | + ); |
| 92 | +} |
0 commit comments