Merge version_9_1781987653610 into main #9

Merged
bender merged 2 commits from version_9_1781987653610 into main 2026-06-20 20:39:55 +00:00
3 changed files with 16 additions and 26 deletions

View File

@@ -38,7 +38,7 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarDropdown
logo="La Basse Cour"
logo=""
ctaButton={{ text: "", href: "" }}
navItems={navItems}
/>

View File

@@ -5,11 +5,11 @@
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #f5f5dc;
--card: #faf0e6;
--foreground: #3e2723;
--primary-cta: #8b5a2b;
--primary-cta-text: #ffffff;
--background: #fdfbf7;
--card: #f5f0e6;
--foreground: #2d1a11;
--primary-cta: #d4af37;
--primary-cta-text: #2d1a11;
--secondary-cta: #faf0e6;
--secondary-cta-text: #8b5a2b;
--accent: #a0522d;

View File

@@ -1,28 +1,18 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
// Created by add_section_from_catalog (HeroOverlay).
import React from 'react';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboard
title="La Basse Cour"
description="Cuisine traditionnelle française faite maison, avec des produits frais et de saison dans un cadre convivial et soigné."
primaryButton={{
text: "Réserver une table",
href: "#contact",
}}
secondaryButton={{
text: "Voir la carte",
href: "#features",
}}
imageSrc="http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3428.jpg?_wi=1"
/>
</SectionErrorBoundary>
</div>
<div data-webild-section="hero" id="hero">
<HeroBillboard
description="depuis notre cuisine jusquà votre table, le goût authentique des produits de saison."
imageSrc="https://picsum.photos/seed/926622769/1200/800"
secondaryButton={{"href":"#features","text":"Voir la carte"}}
title="La Basse Cour restaurant de cuisine française traditionnelle"
primaryButton={{"text":"Réserver une table","href":"#contact"}}
/>
</div>
);
}