Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-25 03:01:51 +00:00

View File

@@ -11,6 +11,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Sparkles, Car, Brush, Truck } from 'lucide-react';
export default function LandingPage() {
return (
@@ -82,6 +83,9 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={true}
names={[
"Brighton Chamber of Commerce", "Livingston County Business Alliance", "Local Car Dealership A", "Local Car Dealership B", "Luxury Auto Club", "Fleet Management Solutions", "Community Businesses"
]}
heading={[
{
type: "text",
@@ -105,25 +109,25 @@ export default function LandingPage() {
{
title: "Ceramic Coating",
description: "Long-lasting paint protection with incredible gloss and hydrophobicity.",
buttonIcon: "Sparkles",
buttonIcon: Sparkles,
buttonHref: "#contact",
},
{
title: "Interior Detailing",
description: "Deep cleaning and sanitization for a fresh, new-car feel inside.",
buttonIcon: "Car",
buttonIcon: Car,
buttonHref: "#contact",
},
{
title: "Paint Correction",
description: "Remove swirls, scratches, and imperfections for a flawless finish.",
buttonIcon: "Brush",
buttonIcon: Brush,
buttonHref: "#contact",
},
{
title: "Mobile Detailing",
description: "Convenient, professional detailing brought right to your home or office.",
buttonIcon: "Truck",
buttonIcon: Truck,
buttonHref: "#contact",
},
]}