Compare commits

...

4 Commits

Author SHA1 Message Date
a528e08977 Update src/app/page.tsx 2026-04-25 21:22:26 +00:00
21b3e4ed4a Merge version_10 into main
Merge version_10 into main
2026-04-25 19:55:55 +00:00
ae36a42a21 Update src/app/page.tsx 2026-04-25 19:55:51 +00:00
118131971e Merge version_9 into main
Merge version_9 into main
2026-04-25 16:27:40 +00:00

View File

@@ -7,9 +7,9 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Crown } from "lucide-react"; import { Crown, Snowflake, Star, Sparkles } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -120,25 +120,22 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="features" data-section="features">
<TestimonialCardSix <FeatureCardTwentyNine
animationType="slide-up" animationType="slide-up"
textboxLayout="split-description" textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ title="Modern Hospitality Standards"
description="Every detail of our rental fleet is meticulously maintained to ensure your event leaves a lasting impression."
features={[
{ {
id: "1", name: "Sarah J.", handle: "Bride", testimonial: "The trailers were immaculate. My guests couldn't stop talking about them.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-arch-seats_1303-10480.jpg"}, title: "Advanced Climate Control", description: "Fully adjustable heating and cooling systems to keep guests comfortable regardless of the season.", imageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-modern-hotel-interior_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/view-beautiful-modern-hotel-interior_23-2148777121.jpg", buttonText: "Learn More"},
{ {
id: "2", name: "Mark D.", handle: "Event Planner", testimonial: "Professional service from start to finish. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-standing-near-window-talking-mobile-phone_23-2147974633.jpg"}, title: "Luxury Finishes", description: "Designer lighting, high-end vanity surfaces, and elegant trim throughout our trailers.", imageSrc: "http://img.b2bpic.net/free-photo/interior-design-concept-with-details_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/interior-design-concept-with-details_23-2148777121.jpg", buttonText: "Learn More"},
{ {
id: "3", name: "Emily R.", handle: "Estate Owner", testimonial: "CleanScene adds a level of sophistication we've never had before.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-gorgeous-couple-embracing-each-other-while-holding-glasses-wine-hands_482257-11118.jpg"}, title: "White-Glove Setup", description: "Our professional team handles every step from delivery to onsite staging to ensure perfection.", imageSrc: "http://img.b2bpic.net/free-photo/professional-team-working-together_23-2148777121.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/professional-team-working-together_23-2148777121.jpg", buttonText: "Learn More"},
{
id: "4", name: "Tom K.", handle: "Festival Producer", testimonial: "Reliable, clean, and exactly what we needed for the crowds.", imageSrc: "http://img.b2bpic.net/high-angle-young-people-partying-together_23-2149739854.jpg"},
{
id: "5", name: "Jessica W.", handle: "Wedding Planner", testimonial: "Flawless delivery and staging. Truly elevated the guest experience.", imageSrc: "http://img.b2bpic.net/free-photo/female-wedding-planner-working-ceremony_23-2150167220.jpg"},
]} ]}
title="Trusted by Wisconsin Events"
description="See why top wedding planners and corporate event organizers trust us."
/> />
</div> </div>
@@ -147,7 +144,7 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain"}} variant: "plain"}}
text="Ready to elevate your event experience? Get in touch with our team today to secure your dates and discover our premium staging options." text="Ready to elevate your event experience? Get in touch with our team today to secure your dates and discover our premium rental options."
buttons={[ buttons={[
{ {
text: "Request My Free Quote", href: "/contact"}, text: "Request My Free Quote", href: "/contact"},
@@ -181,4 +178,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }