Transformation complète du site HookLab de formation TikTok Shop vers une landing page haute conversion pour agence web locale ciblant les artisans du bâtiment dans le Nord (Douai, Orchies, Valenciennes). - Nouveau design system : bleu nuit/orange sur fond clair (mobile-first) - Hero avec promesse artisan + CTA orange "Réserver mon Audit" - Section "Le Système" (3 étapes : Trouvé, Choisi, Contacté) - Portfolio connecté à Sanity.io (fallback data intégré) - Section "Qui suis-je" avec carte OpenStreetMap interactive - FAQ orientée artisans avec JSON-LD pour Google - Formulaire contact audit gratuit - SEO local : 12 keywords artisans, JSON-LD LocalBusiness - Sanity.io schemas (portfolio, siteSettings) + client conditionnel - Accessibilité : skip-to-content, focus-visible, aria-labels https://claude.ai/code/session_01H2aRGDaKgarPvhay2HxN6Y
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
// Sanity schema: Site Settings (singleton)
|
|
// Créez ce schéma dans votre projet Sanity Studio
|
|
// Type: document (singleton)
|
|
|
|
const siteSettings = {
|
|
name: "siteSettings",
|
|
title: "Réglages du site",
|
|
type: "document",
|
|
fields: [
|
|
{
|
|
name: "ownerName",
|
|
title: "Votre nom",
|
|
type: "string",
|
|
initialValue: "Enguerrand",
|
|
},
|
|
{
|
|
name: "ownerBio",
|
|
title: "Votre bio",
|
|
type: "text",
|
|
rows: 4,
|
|
description: "Texte de présentation qui apparaît dans la section 'Qui suis-je'",
|
|
},
|
|
{
|
|
name: "ownerPhoto",
|
|
title: "Votre photo",
|
|
type: "image",
|
|
options: { hotspot: true },
|
|
},
|
|
{
|
|
name: "address",
|
|
title: "Adresse",
|
|
type: "string",
|
|
initialValue: "Flines-lez-Raches, Nord (59)",
|
|
},
|
|
{
|
|
name: "phone",
|
|
title: "Téléphone",
|
|
type: "string",
|
|
},
|
|
{
|
|
name: "email",
|
|
title: "Email de contact",
|
|
type: "string",
|
|
},
|
|
{
|
|
name: "lat",
|
|
title: "Latitude (carte)",
|
|
type: "number",
|
|
initialValue: 50.4267,
|
|
},
|
|
{
|
|
name: "lng",
|
|
title: "Longitude (carte)",
|
|
type: "number",
|
|
initialValue: 3.2372,
|
|
},
|
|
],
|
|
};
|
|
|
|
export default siteSettings;
|