2 Commits

Author SHA1 Message Date
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"
/>
@@ -159,23 +159,23 @@ export default function LandingPage() {
},
{
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" },
title: "Connect", items: [
{ label: "WhatsApp (Chat/Réservez)", href: "https://wa.me/22243057777" },
{ label: "Instagram", href: "#" },
{ label: "Facebook", href: "#" },
],
},
]}
copyrightText="© 2024 Paul Boulangerie Pâtisserie. All rights reserved."
copyrightText="© 2024 Paul Boulangerie Pâtisserie. All rights reserved. Service available in FR/EN."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}