Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70703d30c9 | |||
| 8a1c82d1de | |||
| ea8b522bce | |||
| 0dd94e5a50 | |||
| 67a65d36a6 |
@@ -3,8 +3,8 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
@@ -28,10 +28,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Accueil", id: "home" },
|
||||
{ name: "À propos", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Gallery", id: "testimonials" },
|
||||
{ name: "Galerie", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Salon de Thé Bouchaib"
|
||||
@@ -39,28 +39,22 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
<HeroLogoBillboard
|
||||
logoText="Salon de Thé Bouchaib"
|
||||
description="Un sanctuaire intemporel à Alger, où les arômes riches du thé traditionnel marocain rencontrent la grâce raffinée de l'hospitalité orientale."
|
||||
buttons={[{ text: "Découvrir", href: "#products" }]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E603bEAidbSl8SfiTTqAsuP6gU/uploaded-1779483978108-2jwcfx2e.jpg"
|
||||
imageAlt="Salon de Thé Bouchaib Logo"
|
||||
background={{ variant: "plain" }}
|
||||
title="Salon de Thé Bouchaib"
|
||||
description="A timeless sanctuary in Algiers, where the rich aroma of traditional Moroccan tea meets the refined grace of Oriental hospitality."
|
||||
tag="Established Tradition"
|
||||
testimonials={[
|
||||
{ name: "Amine D.", handle: "@amine_d", testimonial: "A truly refined experience, reminiscent of the best tea salons in the region.", rating: 5 },
|
||||
{ name: "Sarah K.", handle: "@sarah_k", testimonial: "The golden interior and traditional tea set made my visit to Algiers unforgettable.", rating: 5 }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/tray-moorish-tea-with-grapes_23-2148193482.jpg"
|
||||
imageAlt="Traditional tea setting"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextSplitAbout
|
||||
useInvertedBackground={false}
|
||||
title="Our Heritage"
|
||||
title="Notre Héritage"
|
||||
description={[
|
||||
"In the vibrant heart of Algiers, Salon de Thé Bouchaib stands as a bridge between tradition and elegance.", "Drawing inspiration from our rich heritage, we serve carefully selected teas and artisanal pastries in a refined, warm environment adorned with subtle geometric patterns."
|
||||
"Au cœur vibrant d'Alger, le Salon de Thé Bouchaib se dresse comme un pont entre tradition et élégance.", "S'inspirant de notre riche patrimoine, nous servons des thés soigneusement sélectionnés et des pâtisseries artisanales dans un environnement raffiné et chaleureux, orné de subtils motifs géométriques."
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -71,11 +65,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
title="Our Menu"
|
||||
description="Discover our delicate infusions and traditional sweets, handcrafted with authentic recipes."
|
||||
title="Notre Menu"
|
||||
description="Découvrez nos infusions délicates et nos douceurs traditionnelles, préparées à la main avec des recettes authentiques."
|
||||
products={[
|
||||
{ id: "1", name: "Signature Mint Tea", price: "450 DZD", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-with-kettle-dark-floor_140725-73269.jpg" },
|
||||
{ id: "2", name: "Traditional Pastries", price: "300 DZD", imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-chocolate-cakes-inside-plate-with-blue-birthday-cake-pink-desk_140725-25401.jpg" },
|
||||
{ id: "1", name: "Thé à la Menthe Signature", price: "450 DZD", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-tea-with-kettle-dark-floor_140725-73269.jpg" },
|
||||
{ id: "2", name: "Pâtisseries Traditionnelles", price: "300 DZD", imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-chocolate-cakes-inside-plate-with-blue-birthday-cake-pink-desk_140725-25401.jpg" },
|
||||
{ id: "3", name: "Royal Spice Latte", price: "500 DZD", imageSrc: "http://img.b2bpic.net/free-photo/glass-tea-pot-full-with-freshly-brewed-tea-grey-wall_114579-64636.jpg" }
|
||||
]}
|
||||
/>
|
||||
@@ -86,29 +80,33 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Gallery & Guest Memories"
|
||||
description="Capturing the moments of serenity and joy in our salon."
|
||||
title="Galerie & Souvenirs de nos Clients"
|
||||
description="Capturer les moments de sérénité et de joie dans notre salon."
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Amine D.", role: "Local Resident", testimonial: "A truly refined experience, reminiscent of the best tea salons in the region." },
|
||||
{ id: "t2", name: "Sarah K.", role: "Visiting Guest", testimonial: "The golden interior and traditional tea set made my visit to Algiers unforgettable." }
|
||||
{ id: "t1", name: "Amine D.", role: "Résident local", testimonial: "Une expérience vraiment raffinée, rappelant les meilleurs salons de thé de la région." },
|
||||
{ id: "t2", name: "Sarah K.", role: "Visiteuse", testimonial: "L'intérieur doré et le service à thé traditionnel ont rendu ma visite à Alger inoubliable." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Get in touch"
|
||||
tag="Nous contacter"
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
title="Visit Us"
|
||||
description="Located in the heart of Algiers. Join us for a moment of quiet reflection and fine tea."
|
||||
title="Visitez-nous"
|
||||
description="Situé au cœur d'Alger. Rejoignez-nous pour un moment de calme et de thé raffiné."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterLogoEmphasis
|
||||
logoText="Salon de Thé Bouchaib"
|
||||
copyrightText="© 2025 Salon de Thé Bouchaib. All Rights Reserved."
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E603bEAidbSl8SfiTTqAsuP6gU/uploaded-1779483978108-2jwcfx2e.jpg"
|
||||
columns={[
|
||||
{ items: [{ label: "Accueil", href: "#home" }, { label: "À propos", href: "#about" }] },
|
||||
{ items: [{ label: "Menu", href: "#products" }, { label: "Contact", href: "#contact" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user