Merge version_4 into main #5

Merged
bender merged 1 commits from version_4 into main 2026-04-20 17:41:52 +00:00

View File

@@ -1,12 +1,17 @@
"use client";
import ReactLenis from "lenis/react";
import HeroCarouselLogo from "@/components/sections/hero/HeroBillboardScroll";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import FooterBase from "@/components/sections/footer/FooterBase";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Phone, Users, Instagram, Facebook } from "lucide-react";
export default function TrashCleaningPage() {
return (
@@ -25,51 +30,74 @@ export default function TrashCleaningPage() {
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "About Us", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "Social Media", id: "social" },
]}
brandName="NextGenBinCleaning"
button={{ text: "Get Quote", href: "#contact" }}
button={{ text: "330-581-5104 | 330-265-5048", href: "tel:3305815104" }}
/>
<HeroCarouselLogo
title="Welcome to NextGenBinCleaning"
logoText="Welcome to NextGenBinCleaning"
description="We keep your bins sanitized, smelling fresh, and spotless with our eco-friendly professional cleaning services in Louisville, Ohio."
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/top-view-environment-concept_23-2148472378.jpg"
imageAlt="Grassy dirt trail background with soapy cleaning process"
buttons={[
{ text: "View Pricing", href: "#pricing" },
{ text: "Contact Us", href: "#contact" },
]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-environment-concept_23-2148472378.jpg", imageAlt: "Grassy dirt trail background with soapy cleaning process" }
]}
showDimOverlay={true}
/>
<div id="about">
<InlineImageSplitTextAbout
className="pt-40"
heading={[
{ type: "text", content: "Me and my friend Jordan are in middle school and this is " },
{ type: "text", content: "NextGenBinCleaning " },
{ type: "text", content: "we are in the Louisville, Ohio area." }
]}
useInvertedBackground={false}
/>
</div>
<FeatureCardTwentySeven
title="Our Plans"
<InlineImageSplitTextAbout
id="about"
className="pt-40"
heading={[
{ type: "text", content: "At NextGenBinCleaning, we are dedicated to providing the Louisville community with professional, reliable bin cleaning results. Our local team is committed to excellence, ensuring your bins are pristine, sanitized, and odor-free every single time." }
]}
/>
<FeatureCardOne
id="pricing"
tag="Our Plans"
tagIcon={Sparkles}
title="NextGen BinCleaning"
description="Choose the plan that works for you."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
features={[
{
id: "one-time", title: "One Time Service", descriptions: ["1 bin: $15 | 2 bins: $25"],
imageSrc: "http://img.b2bpic.net/free-photo/digital-art-with-recycle-bin_23-2151064538.jpg", imageAlt: "One time bin service"
title: "One Time Service", description: "1 bin: $15 | 2 bins: $25", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-with-recycle-bin_23-2151064538.jpg", imageAlt: "One time bin service"
},
{
id: "monthly", title: "Monthly Service", descriptions: ["1 bin: $30/mo | 2 bins: $35/mo"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-using-dry-shampoo_23-2150704974.jpg", imageAlt: "Monthly bin service"
title: "Monthly Service", description: "1 bin: $30/mo | 2 bins: $35/mo", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-using-dry-shampoo_23-2150704974.jpg", imageAlt: "Monthly bin service"
}
]}
/>
<FooterBase
<FeatureCardMedia
id="social"
tag="Social"
tagIcon={Instagram}
title="Social Media"
description="Connect with us on our social platforms."
textboxLayout="default"
animationType="slide-up"
features={[
{
id: "fb", title: "Facebook", description: "Follow our latest cleaning results!", tag: "Facebook", imageSrc: "http://img.b2bpic.net/free-photo/3d-facebook-logo-with-colorful-elements_23-2152000293.jpg", imageAlt: "Facebook"
},
{
id: "ig", title: "Instagram", description: "See the shine on every bin we clean!", tag: "Instagram", imageSrc: "http://img.b2bpic.net/free-photo/branding-strategy-marketing-business-graphic-design_53876-125554.jpg", imageAlt: "Instagram"
}
]}
/>
<FooterCard
logoText="NextGenBinCleaning"
copyrightText="© 2025 NextGenBinCleaning | Louisville, OH"
columns={[]}
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
]}
/>
</ReactLenis>
</ThemeProvider>