Compare commits
41 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 | |||
| 6e698e6ad9 | |||
| 6eee64818b | |||
| 5d8cde4b94 | |||
| b4dead82e5 | |||
| 4e6df632a8 | |||
| a6b7bf11c8 | |||
| 7b9865c919 |
@@ -1,8 +1,8 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
|
||||
export default function AboutPage() {
|
||||
@@ -20,24 +20,26 @@ export default function AboutPage() {
|
||||
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 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,
|
||||
|
||||
Reference in New Issue
Block a user