Add src/app/about/page.tsx

This commit is contained in:
2026-04-09 23:56:38 +00:00
parent 1aff20099e
commit abc91cd4f5

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

@@ -0,0 +1,41 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Utensils } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Vishnu Bhavan"
/>
<TestimonialAboutCard
tag="Our History"
title="About Vishnu Bhavan"
description="Vishnu Bhavan is a cornerstone of Toongabbie's culinary scene, dedicated to providing authentic South Indian vegetarian food that nourishes the soul."
subdescription="Established with a vision to bring tradition to your table, we source the freshest ingredients and use generations-old recipes to ensure every dish meets our high standards of quality and taste."
icon={Utensils}
imageSrc="http://img.b2bpic.net/free-photo/top-view-dish-spruce-branches-appetizing-christmas-dish-with-lemon-bottle-oil-spices-spruce-branches-with-cones-garlic_140725-111635.jpg?_wi=1"
/>
<FooterBaseReveal
logoText="Vishnu Bhavan"
columns={[
{ title: "Explore", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "About", href: "/about" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}