Add src/app/about/page.tsx

This commit is contained in:
2026-04-28 02:35:34 +00:00
parent dcff34ade0
commit ee892a3d4d

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

@@ -0,0 +1,32 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import MediaAbout from "@/components/sections/about/MediaAbout";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Reservations", id: "/reservations" },
{ name: "Our Story", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Kioku Kitchen"
/>
<div className="pt-32 pb-20">
<MediaAbout
title="Our Story"
description="Founded in the heart of New Westminster, Kioku Kitchen is a testament to the beauty of Japanese culinary traditions. We believe in the power of ingredients to connect people, memories, and culture."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-people-with-food_23-2149008721.jpg"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}