Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe8c5d3e26 | |||
| 2b8a76da1a | |||
| 3199b2be52 | |||
| 33579b8838 | |||
| 243531bc97 | |||
| 35c3a324d5 | |||
| ba543e48d9 | |||
| 78ec4630c6 | |||
| 2b43d54fc6 | |||
| d6e8b8eb3a | |||
| 39be6c5571 | |||
| 93224b0520 | |||
| 54c51fa753 | |||
| 6a348f039b | |||
| a5046a8b85 | |||
| 86cf229c08 | |||
| 7952e29222 | |||
| 733c520d71 | |||
| 933ca836db |
@@ -1,14 +1,46 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ReactLenis from "lenis/react";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
|
||||
export default function AboutPage() {
|
||||
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>
|
||||
);
|
||||
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>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about" }
|
||||
]}
|
||||
brandName="NextGenBinCleaning"
|
||||
button={{ text: "Get Quote", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about" className="min-h-screen pt-40">
|
||||
<TextAbout
|
||||
title="About Us"
|
||||
useInvertedBackground={false}
|
||||
className="text-5xl font-bold"
|
||||
/>
|
||||
<div className="container mx-auto px-6">
|
||||
<p className="text-3xl font-bold">Me and my friend Jordan are in middle school and this is NextGenBinCleaning we are in the Louisville, Ohio area</p>
|
||||
</div>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
@@ -18,7 +18,7 @@ const inter = Inter({
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = { title: 'NextGenBinCleaning | Professional Bin Cleaning in Louisville, OH', description: 'NextGenBinCleaning provides affordable, professional trash can cleaning services for the Louisville, Ohio community.' };
|
||||
export const metadata: Metadata = { title: 'About Us | NextGenBinCleaning', description: 'Learn more about NextGenBinCleaning, a middle school run bin cleaning service in Louisville, Ohio.' };
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
|
||||
@@ -1,7 +1,14 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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";
|
||||
|
||||
export default function TrashCleaningPage() {
|
||||
return (
|
||||
@@ -17,16 +24,80 @@ export default function TrashCleaningPage() {
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<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"}}
|
||||
/>
|
||||
<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>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user