Add src/app/about/page.tsx
This commit is contained in:
31
src/app/about/page.tsx
Normal file
31
src/app/about/page.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function AboutUsPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Team", id: "/team" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Hemlock Roofing"
|
||||
/>
|
||||
<MetricSplitMediaAbout
|
||||
title="Our Story"
|
||||
description="Founded in Worcester, Hemlock Roofing began with a commitment to integrity and exceptional quality. Over 15 years, we have built a reputation for trust, craftsmanship, and a deep dedication to protecting the homes of our local community."
|
||||
metrics={[{ value: "15+", title: "Years Experience" }, { value: "500+", title: "Projects Delivered" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cute-yellow-rural-house-with-wooden-stairs-countryside_176420-7157.jpg"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterSimple
|
||||
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Team", href: "/team" }] }]}
|
||||
bottomLeftText="© 2024 Hemlock Roofing"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user