Add src/app/about/page.tsx
This commit is contained in:
50
src/app/about/page.tsx
Normal file
50
src/app/about/page.tsx
Normal file
@@ -0,0 +1,50 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Us", id: "/about" }
|
||||
]}
|
||||
brandName="Salon Karim"
|
||||
/>
|
||||
<div id="about-header">
|
||||
<MediaAbout
|
||||
title="Our Story"
|
||||
description="Discover the passion and dedication that defines Salon Karim. We are committed to redefining grooming excellence."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DOVzIrpPx7v2i5Pig8KhKyiIcU/uploaded-1778153728762-fsgt75o1.jpg"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<MediaAbout
|
||||
title="The Team"
|
||||
description="Our master barbers bring years of expertise and a personalized touch to every client."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DOVzIrpPx7v2i5Pig8KhKyiIcU/uploaded-1778153728762-t4p3jswy.jpg"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
<MediaAbout
|
||||
title="Our Craft"
|
||||
description="We believe in the art of the shave and the precision of a perfect cut."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DOVzIrpPx7v2i5Pig8KhKyiIcU/uploaded-1778153728762-y5bfe012.jpg"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/hairdressers-instruments-desk_23-2148181925.jpg"
|
||||
logoText="Salon Karim"
|
||||
columns={[
|
||||
{ title: "Menu", items: [{ label: "Home", href: "/" }, { label: "About Us", href: "/about" }] }
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user