Add src/app/about/page.tsx

This commit is contained in:
2026-04-01 16:28:44 +00:00
parent dcc1081195
commit 1439eddea3

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

@@ -0,0 +1,39 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Star } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<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="about" data-section="about" className="pt-32">
<TestimonialAboutCard
useInvertedBackground={false}
tag="About Ms. Ana"
title="Passion in Every Petal"
description="Welcome to Florista de Tires. I'm Ana, and I believe flowers have the power to tell stories and brighten lives. Every bouquet is crafted with care, inspired by the natural beauty of the garden."
subdescription="With years of experience and a deep love for botany, I ensure only the freshest and most vibrant blooms make it into your hands."
imageSrc="http://img.b2bpic.net/free-photo/woman-gardner-looking-after-plants-greenhouse_1303-14066.jpg"
mediaAnimation="blur-reveal"
icon={Star}
/>
</div>
<FooterCard logoText="Florista de Tires" />
</ReactLenis>
</ThemeProvider>
);
}