6 Commits

Author SHA1 Message Date
54fba0d1b4 Update src/app/page.tsx 2026-05-25 14:27:24 +00:00
636170328e Merge version_3 into main
Merge version_3 into main
2026-05-25 14:17:23 +00:00
09413db698 Update src/app/page.tsx 2026-05-25 14:17:20 +00:00
9967044b91 Merge version_2 into main
Merge version_2 into main
2026-05-24 17:00:18 +00:00
cd18966bd3 Update src/app/page.tsx 2026-05-24 17:00:12 +00:00
3ed9814f9e Merge version_1 into main
Merge version_1 into main
2026-05-24 16:49:19 +00:00

View File

@@ -10,7 +10,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Calendar, Clock, Coffee, Croissant, MapPin, Sparkles, Utensils } from "lucide-react";
import { Calendar, Clock, Coffee, Croissant, MapPin, Sparkles, Utensils, MessageCircle, Instagram, Facebook } from "lucide-react";
export default function LandingPage() {
return (
@@ -138,13 +138,13 @@ export default function LandingPage() {
<ContactSplitForm
useInvertedBackground={false}
title="Reservations & Delivery"
description="Book a table or inquire about our catering and delivery services. We look forward to welcoming you."
description="Book a table or inquire about our catering and delivery services. We look forward to welcoming you. Connect with us on social media for daily specials."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
]}
textarea={{ name: "message", placeholder: "Special requests or reservation details...", rows: 4 }}
textarea={{ name: "message", placeholder: "Special requests or reservation details (Français/English)...", rows: 4 }}
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-door-with-decorated-porch_23-2147764364.jpg"
mediaAnimation="slide-up"
/>
@@ -155,26 +155,29 @@ export default function LandingPage() {
logoText="Paul Boulangerie"
columns={[
{
title: "Locations", items: [{ label: "Nouakchott, Mauritania", href: "https://maps.app.goo.gl/xXccsaHyTgnAKsKW8" }],
title: "Locations", items: [{ label: "Nouakchott, Mauritania", href: "https://maps.app.goo.gl/wu9yWkanbYeyH2XV7" }],
},
{
title: "Information", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Menu", href: "#products" },
{ label: "About Us (Français)", href: "#about" },
{ label: "Our Menu (Carte)", href: "#products" },
{ label: "Gallery", href: "#" },
],
},
{
title: "Social", items: [
{ label: "WhatsApp", href: "https://wa.me/22243057777" },
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
title: "Connect", items: [
{ label: "WhatsApp (Chat/Réservez)", href: "https://wa.me/22243057777" },
{ label: "Instagram", href: "https://instagram.com/paul" },
{ label: "Facebook", href: "https://facebook.com/paul" },
],
},
]}
copyrightText="© 2024 Paul Boulangerie Pâtisserie. All rights reserved."
copyrightText="© 2024 Paul Boulangerie Pâtisserie. All rights reserved. Service available in FR/EN."
/>
</div>
<a href="https://wa.me/22243057777" target="_blank" rel="noopener noreferrer" className="fixed bottom-6 right-6 z-50 flex items-center justify-center w-14 h-14 bg-green-500 rounded-full shadow-lg hover:scale-110 transition-transform duration-300">
<MessageCircle className="text-white w-8 h-8" />
</a>
</ReactLenis>
</ThemeProvider>
);