Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
536
src/app/page.tsx
536
src/app/page.tsx
@@ -16,406 +16,164 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Features",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "gallery",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Gold Palace"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Gold Palace"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="Gold Palace"
|
||||
description="The Ultimate Luxury Banquet Hall for Weddings, Events & Celebrations. Create timeless memories in our sophisticated event spaces."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah J.",
|
||||
handle: "@sarahj",
|
||||
testimonial: "Absolutely stunning venue! Our wedding felt like a dream.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-science-fiction-futuristic-background-with-golden-neon-lights_181624-24726.jpg?_wi=1",
|
||||
imageAlt: "luxury banquet hall interior",
|
||||
},
|
||||
{
|
||||
name: "Michael K.",
|
||||
handle: "@mikek",
|
||||
testimonial: "Top-class service and beautiful ambiance. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teddy-bear-made-out-lights-building_181624-13564.jpg?_wi=1",
|
||||
imageAlt: "luxury banquet hall interior",
|
||||
},
|
||||
{
|
||||
name: "Emily R.",
|
||||
handle: "@emilyr",
|
||||
testimonial: "The staff made our corporate gala flawless and unforgettable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-details-this-lovely-table_8353-9904.jpg?_wi=1",
|
||||
imageAlt: "luxury banquet hall interior",
|
||||
},
|
||||
{
|
||||
name: "David M.",
|
||||
handle: "@davidm",
|
||||
testimonial: "Perfect venue for our annual event. Everything was elegant.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chairs-wedding-hall-wedding-ceremony-venue-white-violet_8353-10188.jpg?_wi=1",
|
||||
imageAlt: "luxury banquet hall interior",
|
||||
},
|
||||
{
|
||||
name: "Jessica L.",
|
||||
handle: "@jessl",
|
||||
testimonial: "Exceptional space. The lighting and decor were perfect for our photos.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-men-bachelor-party_23-2149275500.jpg",
|
||||
imageAlt: "luxury banquet hall interior",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Event",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-science-fiction-futuristic-background-with-golden-neon-lights_181624-24726.jpg?_wi=2"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-people-celebrating-wedding-nature_23-2150639485.jpg",
|
||||
alt: "Happy wedding couple",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mature-colleague-talking-happy-younger-colleagues_74855-4330.jpg",
|
||||
alt: "Professional coordinator",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/diverse-business-people-dinner-party_53876-98341.jpg",
|
||||
alt: "Diverse group at gala",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/indoor-shot-glad-black-man-celebrates-something-blinks-eye-has-toothy-smile-wears-elegant-suit-pink-bowtie-poses-purple-wall-with-tinsel-being-disco-party-festive-event-concept_273609-26585.jpg",
|
||||
alt: "Happy event guest",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/headshot-happy-dark-skinned-man-smiles-broadly-shows-white-shining-teeth-dressed-formal-outfit-comes-party_273609-25867.jpg",
|
||||
alt: "Smiling man in suit",
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by 10,000+ happy guests"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Luxury Weddings",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Corporate Galas",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Anniversaries",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Engagement Parties",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Award Ceremonies",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
title="Gold Palace"
|
||||
description="The Ultimate Luxury Banquet Hall for Weddings, Events & Celebrations. Create timeless memories in our sophisticated event spaces."
|
||||
testimonials={[
|
||||
{ name: "Sarah J.", handle: "@sarahj", testimonial: "Absolutely stunning venue! Our wedding felt like a dream.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/abstract-science-fiction-futuristic-background-with-golden-neon-lights_181624-24726.jpg", imageAlt: "luxury banquet hall interior" },
|
||||
{ name: "Michael K.", handle: "@mikek", testimonial: "Top-class service and beautiful ambiance. Highly recommended!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/teddy-bear-made-out-lights-building_181624-13564.jpg", imageAlt: "luxury banquet hall interior" },
|
||||
{ name: "Emily R.", handle: "@emilyr", testimonial: "The staff made our corporate gala flawless and unforgettable.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beauty-details-this-lovely-table_8353-9904.jpg", imageAlt: "luxury banquet hall interior" },
|
||||
{ name: "David M.", handle: "@davidm", testimonial: "Perfect venue for our annual event. Everything was elegant.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/chairs-wedding-hall-wedding-ceremony-venue-white-violet_8353-10188.jpg", imageAlt: "luxury banquet hall interior" },
|
||||
{ name: "Jessica L.", handle: "@jessl", testimonial: "Exceptional space. The lighting and decor were perfect for our photos.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-men-bachelor-party_23-2149275500.jpg", imageAlt: "luxury banquet hall interior" }
|
||||
]}
|
||||
buttons={[{ text: "Book Your Event", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-science-fiction-futuristic-background-with-golden-neon-lights_181624-24726.jpg"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/front-view-people-celebrating-wedding-nature_23-2150639485.jpg", alt: "Happy wedding couple" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mature-colleague-talking-happy-younger-colleagues_74855-4330.jpg", alt: "Professional coordinator" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/diverse-business-people-dinner-party_53876-98341.jpg", alt: "Diverse group at gala" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/indoor-shot-glad-black-man-celebrates-something-blinks-eye-has-toothy-smile-wears-elegant-suit-pink-bowtie-poses-purple-wall-with-tinsel-being-disco-party-festive-event-concept_273609-26585.jpg", alt: "Happy event guest" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/headshot-happy-dark-skinned-man-smiles-broadly-shows-white-shining-teeth-dressed-formal-outfit-comes-party_273609-25867.jpg", alt: "Smiling man in suit" }
|
||||
]}
|
||||
avatarText="Trusted by 10,000+ happy guests"
|
||||
marqueeItems={[{ type: "text", text: "Luxury Weddings" }, { type: "text", text: "Corporate Galas" }, { type: "text", text: "Anniversaries" }, { type: "text", text: "Engagement Parties" }, { type: "text", text: "Award Ceremonies" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Luxury Interior",
|
||||
description: "Elegant décor and exquisite lighting designed to impress your guests from the moment they arrive.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teddy-bear-made-out-lights-building_181624-13564.jpg?_wi=2",
|
||||
imageAlt: "Luxury Interior",
|
||||
},
|
||||
{
|
||||
title: "500+ Capacity",
|
||||
description: "Spacious ballroom perfect for large weddings, grand galas, and corporate celebrations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beauty-details-this-lovely-table_8353-9904.jpg?_wi=2",
|
||||
imageAlt: "Ballroom",
|
||||
},
|
||||
{
|
||||
title: "Prime Location",
|
||||
description: "Easily accessible venue with ample secure parking and valet services for your guests.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chairs-wedding-hall-wedding-ceremony-venue-white-violet_8353-10188.jpg?_wi=2",
|
||||
imageAlt: "Location",
|
||||
},
|
||||
]}
|
||||
title="Why Choose Us"
|
||||
description="Experience unparalleled luxury and service at Gold Palace, designed for the most memorable celebrations."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Luxury Interior", description: "Elegant décor and exquisite lighting designed to impress your guests from the moment they arrive.", imageSrc: "http://img.b2bpic.net/free-photo/teddy-bear-made-out-lights-building_181624-13564.jpg", imageAlt: "Luxury Interior" },
|
||||
{ title: "500+ Capacity", description: "Spacious ballroom perfect for large weddings, grand galas, and corporate celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/beauty-details-this-lovely-table_8353-9904.jpg", imageAlt: "Ballroom" },
|
||||
{ title: "Prime Location", description: "Easily accessible venue with ample secure parking and valet services for your guests.", imageSrc: "http://img.b2bpic.net/free-photo/chairs-wedding-hall-wedding-ceremony-venue-white-violet_8353-10188.jpg", imageAlt: "Location" }
|
||||
]}
|
||||
title="Why Choose Us"
|
||||
description="Experience unparalleled luxury and service at Gold Palace, designed for the most memorable celebrations."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Main Ballroom",
|
||||
price: "Luxurious",
|
||||
variant: "Grand",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/table-arrangement-with-flowers-top-view_23-2148966218.jpg",
|
||||
imageAlt: "Main Ballroom",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Grand Entrance",
|
||||
price: "Welcoming",
|
||||
variant: "Elegant",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/party-decor-golden-decoration-black-background-with-ballons_8353-7983.jpg",
|
||||
imageAlt: "Grand Entrance",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Table Setup",
|
||||
price: "Exquisite",
|
||||
variant: "Wedding",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/big-luxe-dining-room-interior-design_114579-2223.jpg",
|
||||
imageAlt: "Table Setup",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Event Lighting",
|
||||
price: "Stunning",
|
||||
variant: "Gala",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157773.jpg",
|
||||
imageAlt: "Lighting",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Floral Decor",
|
||||
price: "Detailed",
|
||||
variant: "Ceremony",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/layered-candlestick-stand-holiday-table_8353-9829.jpg",
|
||||
imageAlt: "Decor",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Cocktail Area",
|
||||
price: "Modern",
|
||||
variant: "Reception",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-set-table-classic-style_8353-9916.jpg",
|
||||
imageAlt: "Lounge",
|
||||
},
|
||||
]}
|
||||
title="Our Gallery"
|
||||
description="A glimpse into the elegance and grandeur of our events."
|
||||
/>
|
||||
</div>
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
title="Our Gallery"
|
||||
description="A glimpse into the elegance and grandeur of our events."
|
||||
products={[
|
||||
{ id: "p1", name: "Main Ballroom", price: "Luxurious", variant: "Grand", imageSrc: "http://img.b2bpic.net/free-photo/table-arrangement-with-flowers-top-view_23-2148966218.jpg", imageAlt: "Main Ballroom" },
|
||||
{ id: "p2", name: "Grand Entrance", price: "Welcoming", variant: "Elegant", imageSrc: "http://img.b2bpic.net/free-photo/party-decor-golden-decoration-black-background-with-ballons_8353-7983.jpg", imageAlt: "Grand Entrance" },
|
||||
{ id: "p3", name: "Table Setup", price: "Exquisite", variant: "Wedding", imageSrc: "http://img.b2bpic.net/free-photo/big-luxe-dining-room-interior-design_114579-2223.jpg", imageAlt: "Table Setup" },
|
||||
{ id: "p4", name: "Event Lighting", price: "Stunning", variant: "Gala", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157773.jpg", imageAlt: "Lighting" },
|
||||
{ id: "p5", name: "Floral Decor", price: "Detailed", variant: "Ceremony", imageSrc: "http://img.b2bpic.net/free-photo/layered-candlestick-stand-holiday-table_8353-9829.jpg", imageAlt: "Decor" },
|
||||
{ id: "p6", name: "Cocktail Area", price: "Modern", variant: "Reception", imageSrc: "http://img.b2bpic.net/free-photo/close-up-set-table-classic-style_8353-9916.jpg", imageAlt: "Lounge" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah J.",
|
||||
date: "2025-10-15",
|
||||
title: "Wedding",
|
||||
quote: "Absolutely stunning venue! Our wedding felt like a dream.",
|
||||
tag: "Wedding",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/happy-men-bachelor-party_23-2149275500.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-couple_23-2148105908.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Michael K.",
|
||||
date: "2025-09-20",
|
||||
title: "Gala",
|
||||
quote: "Top-class service and beautiful ambiance. Highly recommended!",
|
||||
tag: "Event",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work-event_23-2149304739.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149333735.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Emily R.",
|
||||
date: "2025-08-12",
|
||||
title: "Reception",
|
||||
quote: "The staff made our corporate gala flawless and unforgettable.",
|
||||
tag: "Corporate",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-having-fun-party_23-2149050845.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carefree-african-american-lady-standing-confetti-studio-shot-blissful-black-girl-smiling-beige-background_197531-28959.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David M.",
|
||||
date: "2025-07-05",
|
||||
title: "Anniversary",
|
||||
quote: "Perfect venue for our annual event. Everything was elegant.",
|
||||
tag: "Social",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-woman-looking-tablet_1157-1983.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-vening-street_1303-3838.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Jessica L.",
|
||||
date: "2025-06-25",
|
||||
title: "Engagement",
|
||||
quote: "Exceptional space. The lighting and decor were perfect for our photos.",
|
||||
tag: "Celebration",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-getting-ready-new-year-s-party_23-2149144042.jpg",
|
||||
},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Hear from those who have celebrated their most precious moments at Gold Palace."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="What Our Clients Say"
|
||||
description="Hear from those who have celebrated their most precious moments at Gold Palace."
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah J.", date: "2025-10-15", title: "Wedding", quote: "Absolutely stunning venue! Our wedding felt like a dream.", tag: "Wedding", avatarSrc: "http://img.b2bpic.net/free-photo/happy-men-bachelor-party_23-2149275500.jpg", imageSrc: "http://img.b2bpic.net/free-photo/wedding-couple_23-2148105908.jpg" },
|
||||
{ id: "t2", name: "Michael K.", date: "2025-09-20", title: "Gala", quote: "Top-class service and beautiful ambiance. Highly recommended!", tag: "Event", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work-event_23-2149304739.jpg", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149333735.jpg" },
|
||||
{ id: "t3", name: "Emily R.", date: "2025-08-12", title: "Reception", quote: "The staff made our corporate gala flawless and unforgettable.", tag: "Corporate", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-having-fun-party_23-2149050845.jpg", imageSrc: "http://img.b2bpic.net/free-photo/carefree-african-american-lady-standing-confetti-studio-shot-blissful-black-girl-smiling-beige-background_197531-28959.jpg" },
|
||||
{ id: "t4", name: "David M.", date: "2025-07-05", title: "Anniversary", quote: "Perfect venue for our annual event. Everything was elegant.", tag: "Social", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-woman-looking-tablet_1157-1983.jpg", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-vening-street_1303-3838.jpg" },
|
||||
{ id: "t5", name: "Jessica L.", date: "2025-06-25", title: "Engagement", quote: "Exceptional space. The lighting and decor were perfect for our photos.", tag: "Celebration", avatarSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-man-getting-ready-new-year-s-party_23-2149144042.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardSeven
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "500+",
|
||||
title: "Successful Events",
|
||||
items: [
|
||||
"Weddings",
|
||||
"Galas",
|
||||
"Corporate",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "10k+",
|
||||
title: "Happy Guests",
|
||||
items: [
|
||||
"Weddings",
|
||||
"Galas",
|
||||
"Parties",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
items: [
|
||||
"Excellence",
|
||||
"Reliability",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Our Track Record"
|
||||
description="Proven experience in delivering high-end events."
|
||||
/>
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardSeven
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Track Record"
|
||||
description="Proven experience in delivering high-end events."
|
||||
metrics={[
|
||||
{ id: "m1", value: "500+", title: "Successful Events", items: ["Weddings", "Galas", "Corporate"] },
|
||||
{ id: "m2", value: "10k+", title: "Happy Guests", items: ["Weddings", "Galas", "Parties"] },
|
||||
{ id: "m3", value: "15+", title: "Years Experience", items: ["Excellence", "Reliability"] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social" data-section="social">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Elite Weddings",
|
||||
"Prime Galas",
|
||||
"Tech Events Group",
|
||||
"Blooming Florals",
|
||||
"Gourmet Bites",
|
||||
"Focus Photography",
|
||||
"Print Pro Services",
|
||||
]}
|
||||
title="Trusted By Professionals"
|
||||
description="Our preferred partner network ensures your event is in expert hands."
|
||||
/>
|
||||
</div>
|
||||
<div id="social" data-section="social">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Elite Weddings", "Prime Galas", "Tech Events Group", "Blooming Florals", "Gourmet Bites", "Focus Photography", "Print Pro Services"]}
|
||||
title="Trusted By Professionals"
|
||||
description="Our preferred partner network ensures your event is in expert hands."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "What is the maximum capacity?",
|
||||
content: "Our ballroom can accommodate over 500 guests comfortably for any event type.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Is parking available?",
|
||||
content: "Yes, we provide secure, ample parking space and professional valet services for your convenience.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Can I bring my own catering?",
|
||||
content: "We offer premium in-house catering, but we can discuss external options based on your specific requirements.",
|
||||
},
|
||||
]}
|
||||
sideTitle="Common Questions"
|
||||
sideDescription="Get clear answers about hosting your next event at Gold Palace."
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="blur-reveal"
|
||||
sideTitle="Common Questions"
|
||||
sideDescription="Get clear answers about hosting your next event at Gold Palace."
|
||||
faqs={[
|
||||
{ id: "f1", title: "What is the maximum capacity?", content: "Our ballroom can accommodate over 500 guests comfortably for any event type." },
|
||||
{ id: "f2", title: "Is parking available?", content: "Yes, we provide secure, ample parking space and professional valet services for your convenience." },
|
||||
{ id: "f3", title: "Can I bring my own catering?", content: "We offer premium in-house catering, but we can discuss external options based on your specific requirements." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Booking"
|
||||
title="Book Your Dream Event"
|
||||
description="Call us now or schedule a visit to experience true luxury."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Booking"
|
||||
title="Book Your Dream Event"
|
||||
description="Call us now or schedule a visit to experience true luxury."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Gold Palace"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Gold Palace"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user