Update src/app/page.tsx

This commit is contained in:
2026-05-07 11:50:33 +00:00
parent 681df7de57
commit 08dfdb4974

View File

@@ -11,7 +11,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, Globe, Shield, TrendingUp, Users, Zap } from "lucide-react"; import { Award, Users, TrendingUp } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -55,8 +55,9 @@ export default function LandingPage() {
title="Featured Selections" title="Featured Selections"
description="From velvet reds to crisp whites, find your perfect pour." description="From velvet reds to crisp whites, find your perfect pour."
animationType="slide-up" animationType="slide-up"
gridVariant="uniform-all-items-equal" gridVariant="one-large-left-three-stacked-right"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
products={[ products={[
{ id: "w1", name: "Reserve Cabernet", price: "$18/gl", imageSrc: "http://img.b2bpic.net/free-photo/red-wine-glass-table_23-2148943715.jpg" }, { id: "w1", name: "Reserve Cabernet", price: "$18/gl", imageSrc: "http://img.b2bpic.net/free-photo/red-wine-glass-table_23-2148943715.jpg" },
{ id: "w2", name: "Chardonnay Reserve", price: "$16/gl", imageSrc: "http://img.b2bpic.net/free-photo/glass-white-wine-table_23-2148943714.jpg" }, { id: "w2", name: "Chardonnay Reserve", price: "$16/gl", imageSrc: "http://img.b2bpic.net/free-photo/glass-white-wine-table_23-2148943714.jpg" },
@@ -72,10 +73,11 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
features={[ features={[
{ title: "Sommelier Curation", description: "Expertly selected wines from around the world." }, { title: "Sommelier Curation", description: "Expertly selected wines from around the world.", videoSrc: "https://example.com/video1.mp4" },
{ title: "Artisan Small Plates", description: "Perfect pairings for every glass." }, { title: "Artisan Small Plates", description: "Perfect pairings for every glass.", videoSrc: "https://example.com/video2.mp4" },
{ title: "Intimate Setting", description: "Warm decor and live jazz nights." } { title: "Intimate Setting", description: "Warm decor and live jazz nights.", videoSrc: "https://example.com/video3.mp4" }
]} ]}
/> />
</div> </div>
@@ -87,6 +89,7 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
metrics={[ metrics={[
{ id: "m1", icon: Award, title: "Awards", value: "12", description: "Local wine recognition" }, { id: "m1", icon: Award, title: "Awards", value: "12", description: "Local wine recognition" },
{ id: "m2", icon: Users, title: "Members", value: "2k+", description: "Active club members" }, { id: "m2", icon: Users, title: "Members", value: "2k+", description: "Active club members" },
@@ -98,9 +101,11 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen <TestimonialCardThirteen
title="What Our Guests Say" title="What Our Guests Say"
description="Hear from our satisfied guests."
showRating={true} showRating={true}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
testimonials={[ testimonials={[
{ id: "t1", name: "Elena Rossi", handle: "@erossi", testimonial: "The ambiance is unmatched. A must-visit.", rating: 5 }, { id: "t1", name: "Elena Rossi", handle: "@erossi", testimonial: "The ambiance is unmatched. A must-visit.", rating: 5 },
{ id: "t2", name: "Marcus Thorne", handle: "@mthorne", testimonial: "Fantastic selection of rare reds.", rating: 5 } { id: "t2", name: "Marcus Thorne", handle: "@mthorne", testimonial: "Fantastic selection of rare reds.", rating: 5 }
@@ -114,6 +119,7 @@ export default function LandingPage() {
description="Exclusive access to limited runs." description="Exclusive access to limited runs."
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
plans={[ plans={[
{ id: "c1", badge: "Monthly", price: "$50", subtitle: "Essential access", buttons: [{ text: "Join" }], features: ["Monthly flight", "Member pricing"] }, { id: "c1", badge: "Monthly", price: "$50", subtitle: "Essential access", buttons: [{ text: "Join" }], features: ["Monthly flight", "Member pricing"] },
{ id: "c2", badge: "Premium", price: "$120", subtitle: "Full access", buttons: [{ text: "Join" }], features: ["Unlimited tastings", "Exclusive vintages", "Priority booking"] } { id: "c2", badge: "Premium", price: "$120", subtitle: "Full access", buttons: [{ text: "Join" }], features: ["Unlimited tastings", "Exclusive vintages", "Priority booking"] }
@@ -125,6 +131,7 @@ export default function LandingPage() {
<ContactSplitForm <ContactSplitForm
title="Book Your Table" title="Book Your Table"
description="Reserve your spot at WineBar today." description="Reserve your spot at WineBar today."
useInvertedBackground={false}
inputs={[ inputs={[
{ name: "name", type: "text", placeholder: "Full Name" }, { name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email" } { name: "email", type: "email", placeholder: "Email" }