diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f70eaf6..570ce0f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,89 +7,47 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Accueil", - "href": "#hero" - }, - { - "name": "À propos", - "href": "#about" - }, - { - "name": "Menu", - "href": "#menu" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Accueil", href: "#hero" }, + { name: "À propos", href: "#about" }, + { name: "Menu", href: "#menu" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="CAFFE-RESTO" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=y54trv" + ctaButton={{ text: "Réserver", href: "#contact" }} + navItems={navItems} + />
+ title: "Legal", items: [ + { label: "Mentions Légales", href: "#" }, + { label: "Confidentialité", href: "#" } + ] + } + ]} + leftText="CAFFE-RESTO © 2024. Bouskoura, Maroc." + rightText="L'élégance du café, le plaisir de la gastronomie." + />
); -} +} \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 3199aba..1f1253a 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -11,217 +11,107 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { return ( <> -
- +
+ - -
+ tag="Bienvenue chez nous" + title="Une expérience raffinée au cœur de Bouskoura" + description="Savourez des cafés d'exception, des petits-déjeuners gourmands et une cuisine préparée avec passion dans un cadre moderne." + primaryButton={{ text: "Réserver une table", href: "#contact" }} + secondaryButton={{ text: "Découvrir notre menu", href: "#menu" }} + items={[{ imageSrc: "http://img.b2bpic.net/free-photo/business-people-dining-together-concept_53876-26275.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/front-view-breakfast-table-people-around-table-having-their-meal-daytime-food-meal-breakfast-tea_140725-25902.jpg" }]} + /> +
+
-
- +
+ - -
+ tag="Notre histoire" + quote="CAFFE-RESTO est un lieu où le raffinement rencontre la convivialité. Plus qu'un café, une destination." + author="L'Équipe CAFFE-RESTO" + role="Direction" + imageSrc="http://img.b2bpic.net/free-photo/adorable-couple-sitting-cafe_23-2148422331.jpg" + /> +
+
-
- +
+ - -
+ tag="Pourquoi nous choisir" + title="Une excellence au quotidien" + description="Nous mettons tout en œuvre pour offrir une expérience exceptionnelle." + items={[ + { title: "Service Rapide", tags: ["Efficacité", "Sourire"], imageSrc: "http://img.b2bpic.net/free-photo/young-barista-black-working-suit-with-ingredients-coffee-equipment-brown-coffee-seeds-white_140725-14663.jpg" }, + { title: "Espace VIP", tags: ["Intimité", "Confort"], imageSrc: "http://img.b2bpic.net/free-photo/delicious-donuts-arrangement_23-2148536870.jpg" }, + { title: "Cuisine Fraîche", tags: ["Produits locaux", "Qualité"], imageSrc: "http://img.b2bpic.net/free-photo/baked-meat-sauce-parsley-sumakh-pickles_141793-16636.jpg" } + ]} + /> +
+
- -
- +
+ - -
+ tag="Avis Clients" + title="Ce qu'ils disent de nous" + description="Des moments gourmands partagés par nos clients." + testimonials={[ + { name: "Ayoub Es.Salehy", role: "Client", quote: "Service rapide et excellente qualité.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-brunette-asian-woman-sitting-with-graphic-pen-looking-happy-drawing_1258-199033.jpg" }, + { name: "Ali Abouarab", role: "Client", quote: "L'endroit idéal pour moi.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-glasses-portrait_1262-1461.jpg" }, + { name: "Jess Lee", role: "Client", quote: "Tajines délicieux et viande extrêmement tendre.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg" }, + { name: "TGV CAR", role: "Client", quote: "Cadre parfait et excellente cuisine.", imageSrc: "http://img.b2bpic.net/free-photo/online-shopping-is-so-easy_329181-11751.jpg" }, + { name: "Samine Brothers", role: "Client", quote: "Espace VIP exceptionnel.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-dark-skinned-teenager-with-charming-smile-dressed-casually-enjoys-spare-time_273609-18389.jpg" } + ]} + /> +
+
-
- +
+ - -
+ tag="En chiffres" + title="La passion en action" + description="Des standards élevés pour une satisfaction totale." + metrics={[ + { icon: "Star", title: "Note Moyenne", value: "4,7" }, + { icon: "MessageSquare", title: "Avis Clients", value: "15+" }, + { icon: "Award", title: "Passion & Qualité", value: "100%" } + ]} + /> +
+
-
- +
+ - -
+ tag="Réservations" + text="Réservez votre table chez CAFFE-RESTO et profitez d'une expérience unique. Ouvert 07h00 - 23h00." + primaryButton={{ text: "+212 XX XX XX XX XX", href: "tel:+212000000000" }} + secondaryButton={{ text: "Itinéraire à Bouskoura", href: "#" }} + /> +
+
); -} +} \ No newline at end of file