/** * rCart demo page — server-rendered HTML body. * * Embeds the full component for * real interactivity (catalog browsing, order tracking, filtering) * plus showcase sections explaining the rCart vision. */ const FEATURES = [ { icon: "\u{1F30D}", title: "Cosmolocal Fulfillment", desc: "Orders are matched to the nearest capable print shop or makerspace. Design global, manufacture local.", }, { icon: "\u{1F6D2}", title: "Group Shopping", desc: "Communities pool resources and split costs. Transparent funding progress for every item in the cart.", }, { icon: "\u{1F4B0}", title: "Revenue Splits", desc: "Every order automatically splits revenue between provider, creator, and community fund via rFunds flows.", }, { icon: "\u{1F4E6}", title: "Order Tracking", desc: "Follow orders from pending through production to delivery. Real-time status updates across the community.", }, ]; const INTEGRATIONS = [ { icon: "\u{1F30A}", name: "rFunds", desc: "Revenue from orders flows through TBFF budget funnels with enoughness thresholds." }, { icon: "\u{1F3A8}", name: "rDesign", desc: "Design artifacts become print-ready catalog entries with one click." }, { icon: "\u{1F465}", name: "rNetwork", desc: "Provider registry matches orders to the closest maker in your network." }, { icon: "\u{1F5FA}", name: "rMaps", desc: "See provider locations and delivery zones on the map." }, { icon: "\u{1F4DD}", name: "rNotes", desc: "Link product specs, sizing guides, and design notes to catalog items." }, { icon: "\u2615\uFE0F", name: "rSpace", desc: "Each space has its own shop. Nest catalogs across spaces for cross-community commerce." }, ]; export function renderDemo(): string { return `
Cosmolocal Print-on-Demand

rCart Demo

Group shopping with cosmolocal fulfillment, revenue splits, and transparent funding

\u{1F6D2} Catalog & Orders | \u{1F30D} Local Fulfillment | \u{1F4B0} Revenue Splits | \u{1F4E6} Order Tracking
${FEATURES.map( (f) => `
${f.icon}

${f.title}

${f.desc}

`, ).join("")}

r* Ecosystem Integrations

${INTEGRATIONS.map( (i) => `
${i.icon}

${i.name}

${i.desc}

`, ).join("")}

Ready to shop together?

rCart gives your community a shared catalog with cosmolocal fulfillment, transparent funding, and automatic revenue splits.

Create Your First Cart
`; }