22 Commits

Author SHA1 Message Date
1459ea6d99 Update src/app/social-media/page.tsx 2026-04-20 17:52:15 +00:00
f553765554 Update src/app/social-media/page.tsx 2026-04-20 17:51:45 +00:00
c9f7319300 Update src/app/social-media/page.tsx 2026-04-20 17:51:18 +00:00
9517bcbdf4 Update src/app/social-media/page.tsx 2026-04-20 17:50:47 +00:00
f8715f87cc Update src/app/social-media/page.tsx 2026-04-20 17:50:23 +00:00
235baa4909 Update src/app/pricing/page.tsx 2026-04-20 17:50:22 +00:00
4c5cad9218 Update src/app/page.tsx 2026-04-20 17:50:22 +00:00
2e235d6123 Update src/app/contact/page.tsx 2026-04-20 17:50:21 +00:00
4a10a3a626 Update src/app/about/page.tsx 2026-04-20 17:50:21 +00:00
18206eb409 Add src/app/social-media/page.tsx 2026-04-20 17:49:49 +00:00
d854e60725 Add src/app/pricing/page.tsx 2026-04-20 17:49:49 +00:00
4d43998e7b Update src/app/page.tsx 2026-04-20 17:49:48 +00:00
daa779c4ec Add src/app/contact/page.tsx 2026-04-20 17:49:47 +00:00
cd10360a62 Update src/app/about/page.tsx 2026-04-20 17:49:47 +00:00
775155018a Merge version_5 into main
Merge version_5 into main
2026-04-20 17:45:47 +00:00
6e698e6ad9 Merge version_5 into main
Merge version_5 into main
2026-04-20 17:45:20 +00:00
6eee64818b Merge version_5 into main
Merge version_5 into main
2026-04-20 17:44:49 +00:00
5d8cde4b94 Merge version_5 into main
Merge version_5 into main
2026-04-20 17:44:17 +00:00
b4dead82e5 Merge version_5 into main
Merge version_5 into main
2026-04-20 17:43:38 +00:00
4e6df632a8 Merge version_5 into main
Merge version_5 into main
2026-04-20 17:43:02 +00:00
a6b7bf11c8 Merge version_4 into main
Merge version_4 into main
2026-04-20 17:42:50 +00:00
7b9865c919 Update src/app/page.tsx 2026-04-20 17:42:47 +00:00
5 changed files with 79 additions and 120 deletions

View File

@@ -1,44 +1,14 @@
"use client";
import ReactLenis from "lenis/react";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TextAbout from "@/components/sections/about/TextAbout";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
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" }}
/>
<div id="about" className="min-h-screen pt-40">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Your Committed Local Cleaning Experts" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarLayoutFloatingInline navItems={[{name: "About Us", id: "/about"}, {name: "Pricing", id: "/pricing"}, {name: "Contact", id: "/contact"}, {name: "Social Media", id: "/social-media"}]} button={{text: "Get Started", href: "/pricing"}} brandName="NextGenBinCleaning" />
<TextAbout title="About Our Founders" useInvertedBackground={false} />
</ThemeProvider>
);
}

14
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
export default function ContactPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarLayoutFloatingInline navItems={[{name: "About Us", id: "/about"}, {name: "Pricing", id: "/pricing"}, {name: "Contact", id: "/contact"}, {name: "Social Media", id: "/social-media"}]} button={{text: "Get Started", href: "/pricing"}} brandName="NextGenBinCleaning" />
<ContactSplitForm title="Contact Us" description="Call us at 330-581-5104 or 330-265-5048 to book your service today." inputs={[{name: "name", type: "text", placeholder: "Your Name", required: true}, {name: "email", type: "email", placeholder: "Your Email", required: true}]} useInvertedBackground={false} />
</ThemeProvider>
);
}

View File

@@ -1,14 +1,7 @@
"use client";
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 NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Instagram } from "lucide-react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
export default function TrashCleaningPage() {
return (
@@ -24,80 +17,16 @@ export default function TrashCleaningPage() {
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "About Us", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Social Media", id: "social" },
]}
brandName="NextGenBinCleaning"
button={{ text: "330-581-5104 | 330-265-5048", href: "tel:3305815104" }}
/>
<HeroCarouselLogo
logoText="Welcome to NextGenBinCleaning"
description="We keep your bins sanitized, smelling fresh, and spotless with our eco-friendly professional cleaning services in Louisville, Ohio."
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}
/>
<InlineImageSplitTextAbout
className="pt-40"
useInvertedBackground={false}
heading={[
{ type: "text", content: "Reliable Bin Cleaning for Louisville" }
]}
/>
<FeatureCardThree
tag="Our Plans"
tagIcon={Sparkles}
title="NextGen BinCleaning"
description="Choose the plan that works for you."
textboxLayout="default"
animationType="slide-up"
gridVariant="uniform-all-items-equal"
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: "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
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"
},
{
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"
}
]}
/>
<FooterMedia
logoText="NextGenBinCleaning"
copyrightText="© 2025 NextGenBinCleaning | Louisville, OH"
columns={[
{ title: "Navigation", items: [{ label: "About Us", href: "/about" }, { label: "Pricing", href: "#pricing" }] }
]}
imageSrc="http://img.b2bpic.net/free-photo/digital-art-with-recycle-bin_23-2151064538.jpg?_wi=2"
/>
</ReactLenis>
<NavbarLayoutFloatingInline
navItems={[
{ name: "About Us", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
{ name: "Social Media", id: "/social-media" },
]}
brandName="NextGenBinCleaning"
button={{text: "View Pricing", href: "/pricing"}}
/>
</ThemeProvider>
);
}

25
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,25 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import { Trash2 } from "lucide-react";
export default function PricingPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarLayoutFloatingInline navItems={[{name: "About Us", id: "/about"}, {name: "Pricing", id: "/pricing"}, {name: "Contact", id: "/contact"}, {name: "Social Media", id: "/social-media"}]} button={{text: "Get Started", href: "/pricing"}} brandName="NextGenBinCleaning" />
<PricingCardOne
title="Our Pricing"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
description="Choose the right bin cleaning plan for your needs."
plans={[
{ id: "one-time", badge: "One-Time", badgeIcon: Trash2, price: "$25", subtitle: "Single wash", features: ["Eco-friendly", "Sanitized bin"] },
{ id: "monthly", badge: "Monthly", price: "$35", subtitle: "Recurring service", features: ["Regular visits", "Discounted rate"] }
]}
/>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,21 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TextAnimation from "@/components/text/TextAnimation";
export default function SocialMediaPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[{name: "About Us", id: "/about"}, {name: "Pricing", id: "/pricing"}, {name: "Contact", id: "/contact"}, {name: "Social Media", id: "/social-media"}]}
brandName="NextGenBinCleaning"
/>
</div>
<div className="py-20 text-center">
<TextAnimation title="SOCIAL MEDIA" variant="words-trigger" className="text-8xl font-black" />
</div>
</ThemeProvider>
);
}