Update src/app/about/page.tsx

This commit is contained in:
2026-04-08 18:26:05 +00:00
parent 2f0310a128
commit b093b7a77c

View File

@@ -2,35 +2,42 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import MediaAbout from '@/components/sections/about/MediaAbout';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Info } from 'lucide-react';
import ReactLenis from "lenis/react";
export default function AboutPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleCentered
brandName="Aura Bistro"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
/>
<MediaAbout
title="Our Culinary Story"
description="Born from a passion for authentic flavors and local ingredients, Aura Bistro represents a refined culinary journey. Since our inception, we have been dedicated to crafting unforgettable dining moments in an atmosphere of warmth and elegance."
imageSrc="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg?_wi=1"
useInvertedBackground={false}
tag="About Us"
subdescription="Experience the perfect harmony of taste and ambiance."
icon={undefined as any}
/>
<FooterCard logoText="Aura Bistro" />
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Aura Bistro"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div id="about-section" data-section="about-section">
<TestimonialAboutCard
tag="About Us"
title="Our Culinary Story"
description="Born from a passion for authentic flavors and local ingredients, Aura Bistro represents a refined culinary journey. Since our inception, we have been dedicated to crafting unforgettable dining moments in an atmosphere of warmth and elegance."
subdescription="Experience the perfect harmony of taste and ambiance."
icon={Info}
imageSrc="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg?_wi=1"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard logoText="Aura Bistro" />
</div>
</ReactLenis>
</ThemeProvider>
);