Update src/app/about/page.tsx

This commit is contained in:
2026-04-01 16:29:16 +00:00
parent 7bd56d4f93
commit 0a6902cd3a

View File

@@ -9,17 +9,19 @@ import { Star } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-bubble" defaultTextAnimation="reveal-blur" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" },
]}
brandName="Florista de Tires"
/>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Florista de Tires"
/>
</div>
<div id="about" data-section="about" className="pt-32">
<TestimonialAboutCard
useInvertedBackground={false}
@@ -32,7 +34,9 @@ export default function AboutPage() {
icon={Star}
/>
</div>
<FooterCard logoText="Florista de Tires" />
<div id="footer" data-section="footer">
<FooterCard logoText="Florista de Tires" />
</div>
</ReactLenis>
</ThemeProvider>
);