Merge version_8 into main #21
@@ -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,25 +20,24 @@ 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: "About Us" },
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about" }
|
||||
]}
|
||||
description="Me and my friend Jordan are in middle school and this is NextGenBinCleaning we are in the Louisville, Ohio area"
|
||||
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}
|
||||
>
|
||||
<p className="text-lg">Me and my friend Jordan are in middle school and this is NextGenBinCleaning we are in the Louisville, Ohio area</p>
|
||||
</TextAbout>
|
||||
</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