27 lines
1.0 KiB
TypeScript
27 lines
1.0 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<ThemeProvider>
|
|
<ReactLenis root>
|
|
<NavbarStyleApple
|
|
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, { name: "Cart", id: "/cart" }]}
|
|
brandName="VELORA"
|
|
/>
|
|
<MediaAbout
|
|
title="Our Story"
|
|
description="Founded on the principles of timeless design, Velora redefines modern luxury for the discerning individual."
|
|
imageSrc="http://img.b2bpic.net/free-photo/luxury-fashion-atelier_23-2150863970.jpg"
|
|
useInvertedBackground={false}
|
|
/>
|
|
<FooterSimple columns={[]} />
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |