Add src/app/about/page.tsx

This commit is contained in:
2026-03-25 11:19:46 +00:00
parent 945afb26a8
commit ade303ceac

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

@@ -0,0 +1,54 @@
"use client";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home", href: "/" },
{ name: "About", href: "/about" },
{ name: "Menu", id: "menu", href: "/menu" },
{ name: "Products", href: "/products" },
{ name: "Book Table", id: "book-table", href: "/book-table" },
{ name: "Gallery", id: "gallery", href: "/gallery" },
{ name: "Contact", id: "contact", href: "/contact" }
];
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="grid"
cardStyle="gradient-bordered"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="La Bella Italia"
button={{ text: "Book Now", href: "/book-table" }}
animateOnLoad={true}
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
title="Our Story"
description="Dedicated to bringing authentic Italian flavors to your table since 1999. Our passion for tradition and fresh ingredients defines every dish."
metrics={[
{ value: "25+", title: "Years in Business" },
{ value: "1000+", title: "Happy Customers" },
{ value: "50+", title: "Authentic Recipes" }
]}
useInvertedBackground={false}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
</div>
</ThemeProvider>
);
}