Update src/app/about/page.tsx

This commit is contained in:
2026-04-08 18:23:17 +00:00
parent eff2c29614
commit 654c3b24fc

View File

@@ -1,85 +1,35 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Award } from "lucide-react";
import MediaAbout from '@/components/sections/about/MediaAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
import ReactLenis from "lenis/react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="blurBottom"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Reviews", id: "/reviews" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Book a Table", href: "/contact" }}
brandName="Aura Bistro"
/>
</div>
<div id="about-story" data-section="about-story">
<TestimonialAboutCard
useInvertedBackground={false}
tag="Our Heritage"
title="Crafting Memories"
description="Born from a passion for authentic flavors and meticulous service, Aura Bistro has redefined local dining."
subdescription="Our journey began with a simple belief: every meal should be a masterpiece. Using sustainably sourced, seasonal ingredients, we curate an experience that engages every sense."
icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/close-up-group-friends-restaurant_23-2148395396.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Meet the Team"
description="The creative minds behind every plate."
groups={[
{
id: "kitchen", groupTitle: "Kitchen Staff", members: [
{
id: "m1", title: "Marco", subtitle: "Head Chef", detail: "A passion for flavor."
},
{
id: "m2", title: "Elena", subtitle: "Pastry Chef", detail: "Sweet perfection."
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Aura Bistro"
copyrightText="© 2025 Aura Bistro. All rights reserved."
/>
</div>
<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" },
]}
button={{ text: "Book a Table", href: "/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}
/>
<FooterCard logoText="Aura Bistro" />
</ReactLenis>
</ThemeProvider>
);
}
}