diff --git a/src/app/page.tsx b/src/app/page.tsx index 13a596b..a59971a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Heart, Star, Users } from "lucide-react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; @@ -31,22 +32,10 @@ export default function LandingPage() { @@ -143,24 +80,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - id: "f1", - title: "Exceptional Food", - description: "Consistently rated 5 stars by guests.", - imageSrc: "http://img.b2bpic.net/free-photo/chopped-biscuit-with-fruit_23-2147693569.jpg", - }, - { - id: "f2", - title: "Premium Service", - description: "Professional staff delivering flawless events.", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-having-lunch_23-2150598403.jpg", - }, - { - id: "f3", - title: "Perfect Weddings", - description: "Every detail designed for unforgettable moments.", - imageSrc: "http://img.b2bpic.net/free-photo/man-embracing-hi-wife_1153-126.jpg", - }, + { id: "f1", title: "Exceptional Food", description: "Consistently rated 5 stars by guests.", tag: "Dining", imageSrc: "http://img.b2bpic.net/free-photo/chopped-biscuit-with-fruit_23-2147693569.jpg" }, + { id: "f2", title: "Premium Service", description: "Professional staff delivering flawless events.", tag: "Service", imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-having-lunch_23-2150598403.jpg" }, + { id: "f3", title: "Perfect Weddings", description: "Every detail designed for unforgettable moments.", tag: "Weddings", imageSrc: "http://img.b2bpic.net/free-photo/man-embracing-hi-wife_1153-126.jpg" }, ]} title="What We Offer" description="Every detail designed for unforgettable moments." @@ -174,60 +96,12 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={true} products={[ - { - id: "p1", - brand: "Venue", - name: "Grand Hall", - price: "Experience", - rating: 5, - reviewCount: "100+", - imageSrc: "http://img.b2bpic.net/free-photo/table-assortment-with-plant-flat-lay_23-2148914892.jpg", - }, - { - id: "p2", - brand: "Service", - name: "Catering", - price: "Experience", - rating: 5, - reviewCount: "100+", - imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-wedding-venue-with-intricate-decor-ornaments_23-2151481486.jpg", - }, - { - id: "p3", - brand: "Event", - name: "Ceremony", - price: "Experience", - rating: 5, - reviewCount: "100+", - imageSrc: "http://img.b2bpic.net/free-photo/shot-bride-s-groom-s-table-wedding-reception_181624-24640.jpg", - }, - { - id: "p4", - brand: "Detail", - name: "Table Decor", - price: "Experience", - rating: 5, - reviewCount: "100+", - imageSrc: "http://img.b2bpic.net/free-photo/table-with-glass_1157-782.jpg", - }, - { - id: "p5", - brand: "Event", - name: "Reception", - price: "Experience", - rating: 5, - reviewCount: "100+", - imageSrc: "http://img.b2bpic.net/free-photo/blurred-christmas-lights_53876-23347.jpg", - }, - { - id: "p6", - brand: "Space", - name: "Bridal Suite", - price: "Experience", - rating: 5, - reviewCount: "100+", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-wedding-table-arrangement-with-plates_23-2149436425.jpg", - }, + { id: "p1", brand: "Venue", name: "Grand Hall", price: "Experience", rating: 5, reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/table-assortment-with-plant-flat-lay_23-2148914892.jpg" }, + { id: "p2", brand: "Service", name: "Catering", price: "Experience", rating: 5, reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-wedding-venue-with-intricate-decor-ornaments_23-2151481486.jpg" }, + { id: "p3", brand: "Event", name: "Ceremony", price: "Experience", rating: 5, reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/shot-bride-s-groom-s-table-wedding-reception_181624-24640.jpg" }, + { id: "p4", brand: "Detail", name: "Table Decor", price: "Experience", rating: 5, reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/table-with-glass_1157-782.jpg" }, + { id: "p5", brand: "Event", name: "Reception", price: "Experience", rating: 5, reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/blurred-christmas-lights_53876-23347.jpg" }, + { id: "p6", brand: "Space", name: "Bridal Suite", price: "Experience", rating: 5, reviewCount: "100+", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-wedding-table-arrangement-with-plates_23-2149436425.jpg" }, ]} title="Venue Gallery" description="A glimpse into our exquisite spaces and events." @@ -240,21 +114,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} metrics={[ - { - id: "m1", - title: "Happy Couples", - value: "500+", - }, - { - id: "m2", - title: "5-Star Ratings", - value: "99%", - }, - { - id: "m3", - title: "Events Hosted", - value: "1000+", - }, + { id: "m1", title: "Happy Couples", value: "500+", icon: Users }, + { id: "m2", title: "5-Star Ratings", value: "99%", icon: Star }, + { id: "m3", title: "Events Hosted", value: "1000+", icon: Heart }, ]} title="Excellence in Numbers" description="Our dedication to quality, reflected in our metrics." @@ -266,56 +128,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} testimonials={[ - { - id: "t1", - name: "Sarah Johnson", - date: "2023-05-12", - title: "Amazing Day", - quote: "Food: 5 | Service: 5. Everything was perfect.", - tag: "Wedding", - avatarSrc: "http://img.b2bpic.net/free-photo/studio-portrait-bearded-male-dressed-blue-shirt-white-jacket-bow-tie-grey-background_613910-177.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/blonde-young-woman-looking-camera-holding-red-white-flower-hand_23-2148048884.jpg", - }, - { - id: "t2", - name: "Michael Chen", - date: "2023-06-20", - title: "Flawless", - quote: "Everything was perfect and beautiful.", - tag: "Wedding", - avatarSrc: "http://img.b2bpic.net/free-photo/man-with-his-hand-his-girlfriend-s-shoulder_1098-1916.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-newlyweds-smiling-laughing-sitting-swing-park_176420-2231.jpg", - }, - { - id: "t3", - name: "Emily Rodriguez", - date: "2023-07-15", - title: "Stunning", - quote: "Amazing experience and atmosphere throughout the event.", - tag: "Wedding", - avatarSrc: "http://img.b2bpic.net/free-photo/slim-brunette-woman-black-sweater-crossed-arms_613910-7040.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/brides-couple-cutting-wedding-cake_8353-12243.jpg", - }, - { - id: "t4", - name: "David Kim", - date: "2023-08-01", - title: "Professional", - quote: "Top level service and organization.", - tag: "Wedding", - avatarSrc: "http://img.b2bpic.net/free-photo/young-adult-having-fun-white-party_23-2149575082.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/groom-with-bride-are-knocking-glasses-with-champagne_8353-10453.jpg", - }, - { - id: "t5", - name: "Jessica Lee", - date: "2023-09-10", - title: "Perfect Venue", - quote: "We loved every second of our special day.", - tag: "Wedding", - avatarSrc: "http://img.b2bpic.net/free-photo/close-up-surprised-excited-smiling-girl-checking-out-interesting-offer-staring-camera-intr_1258-125420.jpg", - imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-celebrating-new-year-friends-drinks-champagne_1157-44329.jpg", - }, + { id: "t1", name: "Sarah Johnson", date: "2023-05-12", title: "Amazing Day", quote: "Food: 5 | Service: 5. Everything was perfect.", tag: "Wedding", avatarSrc: "http://img.b2bpic.net/free-photo/studio-portrait-bearded-male-dressed-blue-shirt-white-jacket-bow-tie-grey-background_613910-177.jpg", imageSrc: "http://img.b2bpic.net/free-photo/blonde-young-woman-looking-camera-holding-red-white-flower-hand_23-2148048884.jpg" }, + { id: "t2", name: "Michael Chen", date: "2023-06-20", title: "Flawless", quote: "Everything was perfect and beautiful.", tag: "Wedding", avatarSrc: "http://img.b2bpic.net/free-photo/man-with-his-hand-his-girlfriend-s-shoulder_1098-1916.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-newlyweds-smiling-laughing-sitting-swing-park_176420-2231.jpg" }, + { id: "t3", name: "Emily Rodriguez", date: "2023-07-15", title: "Stunning", quote: "Amazing experience and atmosphere throughout the event.", tag: "Wedding", avatarSrc: "http://img.b2bpic.net/free-photo/slim-brunette-woman-black-sweater-crossed-arms_613910-7040.jpg", imageSrc: "http://img.b2bpic.net/free-photo/brides-couple-cutting-wedding-cake_8353-12243.jpg" }, + { id: "t4", name: "David Kim", date: "2023-08-01", title: "Professional", quote: "Top level service and organization.", tag: "Wedding", avatarSrc: "http://img.b2bpic.net/free-photo/young-adult-having-fun-white-party_23-2149575082.jpg", imageSrc: "http://img.b2bpic.net/free-photo/groom-with-bride-are-knocking-glasses-with-champagne_8353-10453.jpg" }, + { id: "t5", name: "Jessica Lee", date: "2023-09-10", title: "Perfect Venue", quote: "We loved every second of our special day.", tag: "Wedding", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-surprised-excited-smiling-girl-checking-out-interesting-offer-staring-camera-intr_1258-125420.jpg", imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-celebrating-new-year-friends-drinks-champagne_1157-44329.jpg" }, ]} title="Client Stories" description="Hear from our happy couples." @@ -327,14 +144,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "WeddingWire", - "The Knot", - "Brides", - "Zola", - "Martha Stewart", - "Vogue Weddings", - "Style Me Pretty", - ]} + "WeddingWire", "The Knot", "Brides", "Zola", "Martha Stewart", "Vogue Weddings", "Style Me Pretty"]} title="Trusted Partners" description="Collaborating with the best." /> @@ -346,25 +156,10 @@ export default function LandingPage() { title="Ready to Create Your Perfect Event?" description="Contact us to start planning your dream wedding." inputs={[ - { - name: "name", - type: "text", - placeholder: "Name", - required: true, - }, - { - name: "email", - type: "email", - placeholder: "Email", - required: true, - }, + { name: "name", type: "text", placeholder: "Name", required: true }, + { name: "email", type: "email", placeholder: "Email", required: true }, ]} - textarea={{ - name: "message", - placeholder: "How can we help?", - rows: 4, - required: true, - }} + textarea={{ name: "message", placeholder: "How can we help?", rows: 4, required: true }} imageSrc="http://img.b2bpic.net/free-photo/tablet-standing-isolated-table_1303-22646.jpg" /> @@ -372,14 +167,8 @@ export default function LandingPage() {