5 Commits

Author SHA1 Message Date
01ab3f5b17 Update src/app/page.tsx 2026-05-08 20:09:36 +00:00
4cbc9167e5 Merge version_3 into main
Merge version_3 into main
2026-05-08 20:08:17 +00:00
7087c3611b Update src/app/page.tsx 2026-05-08 20:08:14 +00:00
310912d029 Merge version_2 into main
Merge version_2 into main
2026-05-08 20:04:45 +00:00
a2b54e127f Merge version_2 into main
Merge version_2 into main
2026-05-08 20:04:13 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Facebook, Instagram, Twitter } from "lucide-react"; import { Calendar, Facebook, Instagram, Twitter } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -47,7 +47,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }} background={{ variant: "gradient-bars" }}
title="Coastal Dining Refined" title="Coastal Dining Refined"
description="Experience the freshest catch and local flavors at Thompson's Cove, where ocean views meet exceptional culinary craft." description="Experience the freshest catch and local flavors at Thompson's Cove, where ocean views meet exceptional culinary craft."
buttons={[{ text: "Book Your Table", href: "#contact" }]} buttons={[{ text: "Reserve Your Coastal Table", href: "#contact" }]}
carouselItems={Array.from({ length: 6 }).map((_, i) => ({ carouselItems={Array.from({ length: 6 }).map((_, i) => ({
id: (i + 1).toString(), id: (i + 1).toString(),
imageSrc: `https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=${1000 + i}`, imageSrc: `https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=${1000 + i}`,
@@ -147,6 +147,7 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
tag="Reservations" tag="Reservations"
tagIcon={Calendar}
title="Ready for an Unforgettable Meal?" title="Ready for an Unforgettable Meal?"
description="Secure your table today and enjoy the best coastal dining experience." description="Secure your table today and enjoy the best coastal dining experience."
buttons={[{ text: "Call to Book", href: "tel:+15550123456" }, { text: "Reserve Online", href: "#" }]} buttons={[{ text: "Call to Book", href: "tel:+15550123456" }, { text: "Reserve Online", href: "#" }]}
@@ -167,4 +168,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }