Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1459ea6d99 | |||
| f553765554 | |||
| c9f7319300 | |||
| 9517bcbdf4 | |||
| f8715f87cc | |||
| 235baa4909 | |||
| 4c5cad9218 | |||
| 2e235d6123 | |||
| 4a10a3a626 | |||
| 18206eb409 | |||
| d854e60725 | |||
| 4d43998e7b | |||
| daa779c4ec | |||
| cd10360a62 | |||
| 775155018a | |||
| 579a2a9d98 | |||
| 6e698e6ad9 | |||
| 452e554d8b | |||
| ad3b5146db | |||
| 6eee64818b | |||
| 8699858969 | |||
| aed3ea9b1f | |||
| 5d8cde4b94 | |||
| ebbf354365 | |||
| 9ddd4b0205 | |||
| b4dead82e5 | |||
| e2c7e3f0a4 | |||
| e812020aa1 | |||
| 4e6df632a8 | |||
| 737d03b65c | |||
| 42926ec2ce | |||
| a6b7bf11c8 | |||
| 33991a39da | |||
| e36150d0da |
@@ -1,42 +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" },
|
||||
]}
|
||||
brandName="NextGenBinCleaning"
|
||||
button={{ text: "Get Quote", href: "#contact" }}
|
||||
/>
|
||||
<div id="about" className="min-h-screen pt-40">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "About NextGenBinCleaning" },
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</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
14
src/app/contact/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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 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, Facebook } from "lucide-react";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
|
||||
export default function TrashCleaningPage() {
|
||||
return (
|
||||
@@ -24,79 +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: "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
|
||||
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", 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"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FeatureCardMedia
|
||||
tag="Social"
|
||||
tagIcon={Instagram}
|
||||
title="Social Media"
|
||||
description="Connect with us on our social platforms."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
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"
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
]}
|
||||
/>
|
||||
</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
25
src/app/pricing/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
21
src/app/social-media/page.tsx
Normal file
21
src/app/social-media/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user