--- import Base from '../layouts/Base.astro'; import { getPublishedProducts, getHomePage, urlFor } from '../lib/sanity.mjs'; const [products, home] = await Promise.all([getPublishedProducts(), getHomePage()]); const heroImg = home?.heroImage ? urlFor(home.heroImage).width(1024).url() : products[0]?.images?.[0] ? urlFor(products[0].images[0]).width(1024).url() : '/assets/table-terrazzo.jpg'; const heroImgAlt = home?.heroImageAlt || 'REBOURS — Mobilier d\'art contemporain, Paris 2026'; const heroLabel = home?.heroLabel || '// ARCHIVE_001 — 2026'; const heroTitleParts = (home?.heroTitle || 'REBOURS|STUDIO').split('|'); const heroSubtitle = home?.heroSubtitle || 'Mobilier d\'art contemporain.\nSpace Age × Memphis.'; const heroStatus = home?.heroStatus || 'STATUS: [PROTOTYPE EN COURS]\nCOLLECTION_001 — BIENTÔT DISPONIBLE'; const collectionLabel = home?.collectionLabel || '// COLLECTION_001'; const collectionCta = home?.collectionCta || 'CLIQUER POUR OUVRIR'; const contactLabel = home?.contactLabel || '// CONTACT'; const contactTitleParts = (home?.contactTitle || 'UNE QUESTION ?|PARLONS-EN').split('|'); const contactDesc = home?.contactDescription || 'Commandes sur mesure, questions techniques,\nou simplement dire bonjour.'; const whatsappNumber = home?.whatsappNumber || '33651755191'; const whatsappBtnText = home?.whatsappButtonText || 'CONTACTEZ-NOUS SUR WHATSAPP'; const contactResponseTime = home?.contactResponseTime || 'RÉPONSE SOUS 24H'; const footerText = home?.footerText || '© 2026 REBOURS STUDIO — PARIS'; const instagramUrl = home?.instagramUrl || 'https://instagram.com/rebour.studio'; const seoTitle = home?.seoTitle || 'REBOURS — Mobilier d\'art contemporain | Collection 001'; const seoDesc = home?.seoDescription || 'REBOURS Studio crée du mobilier d\'art contemporain inspiré du Space Age et du mouvement Memphis. Pièces uniques fabriquées à Paris. Collection 001 en cours.'; const firstImage = heroImg; const schemaOrg = { "@context": "https://schema.org", "@type": "Store", "name": "REBOURS Studio", "description": "Mobilier d'art contemporain. Space Age × Memphis. Pièces uniques fabriquées à Paris.", "url": "https://rebours.studio/", "image": firstImage, "address": { "@type": "PostalAddress", "addressLocality": "Paris", "addressCountry": "FR" }, "hasOfferCatalog": { "@type": "OfferCatalog", "name": "Collection 001", "itemListElement": products.filter(p => p.price).map(p => ({ "@type": "Offer", "itemOffered": { "@type": "Product", "name": p.productDisplayName, "description": p.seoDescription || p.description?.substring(0, 155), "image": p.images?.[0] ? urlFor(p.images[0]).width(1024).url() : undefined, }, "price": String(p.price / 100), "priceCurrency": p.currency || 'EUR', "availability": p.availability, })), } }; ---