Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-11 15:31:28 +00:00
2 changed files with 70 additions and 3 deletions

67
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,67 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="largeSmallSizeLargeTitles"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
]}
brandName="CROW Plumber & Heating"
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
title="About CROW Plumber & Heating"
description={[
"We are a team of certified, local professionals dedicated to serving the community of East Sussex. With over 500 happy customers, we prioritize speed, transparency, and high-quality workmanship in every project we undertake.", "Our commitment is to safety and reliability. Whether it's an emergency boiler repair, a routine maintenance check, or a full system installation, our team provides 24/7 support to ensure your home or business runs smoothly."
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/#features" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}
bottomLeftText="© 2024 CROW Plumber & Heating. All rights reserved."
bottomRightText="East Sussex, UK"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "/about" },
{ name: "Services", id: "features" }, { name: "Services", id: "features" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
@@ -66,7 +66,7 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
title="Local Experts Committed to Quality and Speed" title="Local Experts Committed to Quality and Speed"
buttons={[ buttons={[
{ text: "Learn More About Us", href: "#about" }, { text: "Learn More About Us", href: "/about" },
]} ]}
/> />
</div> </div>
@@ -170,7 +170,7 @@ export default function LandingPage() {
columns={[ columns={[
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "/about" },
{ label: "Services", href: "#features" }, { label: "Services", href: "#features" },
{ label: "Testimonials", href: "#testimonials" }, { label: "Testimonials", href: "#testimonials" },
], ],