Update src/app/about/page.tsx

This commit is contained in:
2026-04-22 13:09:47 +00:00
parent 3a22a56315
commit 56cf4a2703

View File

@@ -2,38 +2,34 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
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">
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Our Story", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/#menu" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/#contact" },
]}
brandName="The Table"
/>
<div className="pt-32 pb-20">
<TextSplitAbout
title="Our Story: Community & Roots"
description={[
"At The Table, we believe in the power of shared experiences. Founded by local culinary enthusiasts, our cafe serves as a hub for the community to gather over thoughtfully sourced, farm-to-table meals.", "We are proudly women-owned and dedicated to supporting small, local producers. Every partnership we build ensures that we not only provide fresh, sustainable ingredients but also empower local entrepreneurs who share our vision for quality and integrity.", "Join us in celebrating the local spirit, one plate at a time."
]}
brandName="The Table"
button={{ text: "Order Now", href: "/menu" }}
/>
<div className="pt-24">
<TextSplitAbout
title="Our Community & Craft"
description={[
"At The Table, we believe that true hospitality is built on community. Our boutique coffee and wine bar serves as a gathering place for locals to connect over thoughtfully sourced flavors.", "Every interaction is designed to make you feel at home, blending the warmth of a local cafe with the refined elegance of a curated wine experience."
]}
useInvertedBackground={false}
/>
useInvertedBackground={false}
/>
</div>
<FooterCard
logoText="The Table"
copyrightText="© 2025 The Table Restaurant"
/>
<FooterCard logoText="The Table" copyrightText="© 2025 The Table Restaurant" />
</ReactLenis>
</ThemeProvider>
);