Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-06-03 03:48:00 +00:00

View File

@@ -7,10 +7,10 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, Star, Award } from "lucide-react";
const assetMap = {
@@ -230,19 +230,17 @@ export default function LandingPage() {
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="MESUAKA transformed our wedding reception into an absolute blast! The cocktails were exquisite, and the bartenders were incredibly engaging and fun. Our guests couldn't stop raving about the entire bar experience. Highly recommend their professional and personalized service!"
rating={5}
author="Jessica L., Happy Bride"
avatars={[
{ src: getAssetUrl("testimonial-avatar-group-1"), alt: getAssetAlt("testimonial-avatar-group-1") },
{ src: getAssetUrl("testimonial-avatar-group-2"), alt: getAssetAlt("testimonial-avatar-group-2") },
{ src: getAssetUrl("testimonial-avatar-group-3"), alt: getAssetAlt("testimonial-avatar-group-3") },
{ src: getAssetUrl("testimonial-avatar-group-4"), alt: getAssetAlt("testimonial-avatar-group-4") }
]}
ratingAnimation="blur-reveal"
avatarsAnimation="slide-up"
<TestimonialCardTen
tag="Testimonials"
title="What Our Clients Say"
description="Hear from those who've experienced the MESUAKA difference firsthand."
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "1", title: "Flawless Wedding Experience!", quote: "MESUAKA transformed our wedding reception into an absolute blast! The cocktails were exquisite, and the bartenders were incredibly engaging and fun. Our guests couldn't stop raving about the entire bar experience. Highly recommend their professional and personalized service!", name: "Jessica L.", role: "Happy Bride", imageSrc: getAssetUrl("testimonial-avatar-group-1")
}
]}
/>
</div>
<div id="social-proof" data-section="social-proof">
@@ -258,28 +256,28 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactCenter
tag="Get in Touch"
title="Ready to Plan Your Perfect Event?"
description="Contact us today to discuss your specific needs, explore our bespoke options, and receive a personalized quote. Let's make your next event truly unforgettable!"
buttons={[
{ text: "Request a Quote", href: "#" },
{ text: "Call Us Now", href: "tel:+1234567890" }
]}
background={{ variant: "sparkles-gradient" }}
description="Enter your email to receive a personalized quote and discuss how MESUAKA can make your next event unforgettable!"
inputPlaceholder="Enter your email"
buttonText="Request Quote"
termsText="By entering your email, you agree to our privacy policy and terms of service."
background={{ variant: "radial-gradient" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="MESUAKA"
<FooterSimple
columns={[
{ items: [{ label: "Home", href: "#home" }, { label: "About Us", href: "#about" }, { label: "Services", href: "#services" }] },
{ items: [{ label: "Menu", href: "#menu" }, { label: "Packages", href: "#packages" }, { label: "Testimonials", href: "#testimonials" }] },
{ items: [{ label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
{ title: "Company", items: [{ label: "Home", href: "#home" }, { label: "About Us", href: "#about" }, { label: "Services", href: "#services" }] },
{ title: "Explore", items: [{ label: "Menu", href: "#menu" }, { label: "Packages", href: "#packages" }, { label: "Testimonials", href: "#testimonials" }] },
{ title: "Legal & Contact", items: [{ label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
bottomLeftText="© 2024 MESUAKA. All rights reserved."
bottomRightText="Powered by Webild"
/>
</div>
</ThemeProvider>
);
}
}