Compare commits
66 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe8c5d3e26 | |||
| 2b8a76da1a | |||
| 3199b2be52 | |||
| 33579b8838 | |||
| 243531bc97 | |||
| 35c3a324d5 | |||
| ba543e48d9 | |||
| 78ec4630c6 | |||
| 2b43d54fc6 | |||
| d6e8b8eb3a | |||
| 39be6c5571 | |||
| 93224b0520 | |||
| 54c51fa753 | |||
| 6a348f039b | |||
| 1459ea6d99 | |||
| a5046a8b85 | |||
| f553765554 | |||
| 86cf229c08 | |||
| c9f7319300 | |||
| 7952e29222 | |||
| 9517bcbdf4 | |||
| 733c520d71 | |||
| f8715f87cc | |||
| 235baa4909 | |||
| 4c5cad9218 | |||
| 2e235d6123 | |||
| 4a10a3a626 | |||
| 933ca836db | |||
| 18206eb409 | |||
| d854e60725 | |||
| 4d43998e7b | |||
| daa779c4ec | |||
| cd10360a62 | |||
| 775155018a | |||
| 579a2a9d98 | |||
| 6e698e6ad9 | |||
| 452e554d8b | |||
| ad3b5146db | |||
| 6eee64818b | |||
| 8699858969 | |||
| aed3ea9b1f | |||
| 5d8cde4b94 | |||
| ebbf354365 | |||
| 9ddd4b0205 | |||
| b4dead82e5 | |||
| e2c7e3f0a4 | |||
| e812020aa1 | |||
| 4e6df632a8 | |||
| 737d03b65c | |||
| 42926ec2ce | |||
| a6b7bf11c8 | |||
| 7b9865c919 | |||
| 33991a39da | |||
| 19e78c9f48 | |||
| e36150d0da | |||
| a93c3e2a9b | |||
| 2a64c0080d | |||
| 2100630574 | |||
| a7448ebbac | |||
| dd832e8ebb | |||
| dd28d04c9d | |||
| aebba7babf | |||
| 7212cb92d9 | |||
| 80dd06eee1 | |||
| be7aa0b553 | |||
| 443b0381de |
46
src/app/about/page.tsx
Normal file
46
src/app/about/page.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
"use client";
|
||||
|
||||
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="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>
|
||||
);
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -3,15 +3,12 @@
|
||||
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 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 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, Phone, Users, Instagram, Facebook } from "lucide-react";
|
||||
import { Sparkles, Instagram } from "lucide-react";
|
||||
|
||||
export default function TrashCleaningPage() {
|
||||
return (
|
||||
@@ -30,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,16 +47,13 @@ export default function TrashCleaningPage() {
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
<InlineImageSplitTextAbout
|
||||
id="about"
|
||||
className="pt-40"
|
||||
useInvertedBackground={false}
|
||||
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." }
|
||||
{ type: "text", content: "Reliable Bin Cleaning for Louisville" }
|
||||
]}
|
||||
/>
|
||||
<FeatureCardOne
|
||||
id="pricing"
|
||||
<FeatureCardThree
|
||||
tag="Our Plans"
|
||||
tagIcon={Sparkles}
|
||||
title="NextGen BinCleaning"
|
||||
@@ -67,39 +61,41 @@ export default function TrashCleaningPage() {
|
||||
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: "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"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FeatureCardMedia
|
||||
id="social"
|
||||
<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={[
|
||||
{
|
||||
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: "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: "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"
|
||||
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"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FooterCard
|
||||
<FooterMedia
|
||||
logoText="NextGenBinCleaning"
|
||||
copyrightText="© 2025 NextGenBinCleaning | Louisville, OH"
|
||||
socialLinks={[
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user