1 Commits

Author SHA1 Message Date
7b9865c919 Update src/app/page.tsx 2026-04-20 17:42:47 +00:00
2 changed files with 19 additions and 22 deletions

View File

@@ -24,18 +24,16 @@ export default function AboutPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Social Media", id: "social" },
]}
brandName="NextGenBinCleaning"
button={{ text: "Get Quote", href: "/#contact" }}
button={{ text: "Get Quote", href: "#contact" }}
/>
<div id="about" className="min-h-screen pt-40">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Your Committed Local Cleaning Experts" },
{ type: "text", content: "About NextGenBinCleaning" },
]}
useInvertedBackground={false}
/>
</div>
</ReactLenis>

View File

@@ -3,12 +3,12 @@
import ReactLenis from "lenis/react";
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import FeatureCardThree_2 from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import FooterCard from "@/components/sections/footer/FooterCard";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Instagram } from "lucide-react";
import { Sparkles, Instagram, Facebook } from "lucide-react";
export default function TrashCleaningPage() {
return (
@@ -27,8 +27,8 @@ export default function TrashCleaningPage() {
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "About Us", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "About Us", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "Social Media", id: "social" },
]}
brandName="NextGenBinCleaning"
@@ -50,10 +50,10 @@ export default function TrashCleaningPage() {
className="pt-40"
useInvertedBackground={false}
heading={[
{ type: "text", content: "Reliable Bin Cleaning for Louisville" }
{ 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." }
]}
/>
<FeatureCardThree
<FeatureCardOne
tag="Our Plans"
tagIcon={Sparkles}
title="NextGen BinCleaning"
@@ -64,38 +64,37 @@ export default function TrashCleaningPage() {
useInvertedBackground={false}
features={[
{
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?_wi=1", 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"
},
{
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"
}
]}
/>
<FeatureCardThree_2
<FeatureCardMedia
tag="Social"
tagIcon={Instagram}
title="Social Media"
description="Connect with us on our social platforms."
textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
features={[
{
title: "Facebook", description: "Follow our latest cleaning results!", imageSrc: "http://img.b2bpic.net/free-photo/3d-facebook-logo-with-colorful-elements_23-2152000293.jpg", imageAlt: "Facebook"
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"
},
{
title: "Instagram", description: "See the shine on every bin we clean!", imageSrc: "http://img.b2bpic.net/free-photo/branding-strategy-marketing-business-graphic-design_53876-125554.jpg", imageAlt: "Instagram"
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"
}
]}
/>
<FooterMedia
<FooterCard
logoText="NextGenBinCleaning"
copyrightText="© 2025 NextGenBinCleaning | Louisville, OH"
columns={[
{ title: "Navigation", items: [{ label: "About Us", href: "/about" }, { label: "Pricing", href: "#pricing" }] }
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
]}
imageSrc="http://img.b2bpic.net/free-photo/digital-art-with-recycle-bin_23-2151064538.jpg?_wi=2"
/>
</ReactLenis>
</ThemeProvider>