Files
0bee42b0-e95d-4faf-8d61-ce2…/src/app/about/page.tsx
2026-03-04 18:12:21 +00:00

175 lines
6.7 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import MediaAbout from '@/components/sections/about/MediaAbout';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Heart, MessageCircle, Building2 } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="shadow"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Aniona"
navItems={[
{ name: "Home", id: "/" },
{ name: "Collections", id: "/collections" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Order Now",
href: "/collections"
}}
animateOnLoad={true}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="The Art of Floral Storytelling"
description="Founded in 2009, Aniona Flowers Studio has been dedicated to transforming flowers into extraordinary expressions of emotion and beauty. Our journey began with a simple belief: every flower arrangement should tell a story, capture a moment, and create lasting memories. Today, we're proud to be recognized as artisans who understand that flowers are more than decorations—they're the language of life's most precious moments."
tag="Our Story"
tagIcon={Heart}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-flower-shop_23-2149247584.jpg?_wi=2"
imageAlt="Aniona flower studio workspace with expert florists"
useInvertedBackground={false}
buttons={[
{ text: "View Our Work", href: "/collections" },
{ text: "Meet Our Team", href: "/contact" }
]}
buttonAnimation="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title="Stories from Our Clients"
description="15 years of creating magical moments through floral artistry—here's what our clients say about their experience with Aniona"
tag="Client Love"
tagIcon={MessageCircle}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
testimonials={[
{
id: "1",
name: "Sophie Martin",
role: "Bride",
company: "June Wedding",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=4",
imageAlt: "Sophie Martin testimonial"
},
{
id: "2",
name: "Elena Rodriguez",
role: "Event Planner",
company: "Elegant Events Co",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=5",
imageAlt: "Elena Rodriguez testimonial"
},
{
id: "3",
name: "Jessica Liu",
role: "Corporate Manager",
company: "Tech Innovations Ltd",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=6",
imageAlt: "Jessica Liu testimonial"
}
]}
kpiItems={[
{ value: "500+", label: "Happy Clients" },
{ value: "98%", label: "Satisfaction Rate" },
{ value: "15+", label: "Years of Service" }
]}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Recognized Excellence"
description="Our commitment to floral artistry has earned recognition from industry leaders and partners who share our passion for exceptional design"
tag="Industry Partners"
tagIcon={Building2}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
names={[
"Bride Magazine",
"Event Planners United",
"Luxury Weddings Co",
"Premium Florist Network",
"Wedding Dreams Studio",
"Celebration Events",
"Elite Event Design",
"Boutique Floristry Association"
]}
speed={40}
showCard={true}
/>
</div>
<FooterBaseCard
logoText="Aniona"
columns={[
{
title: "Studio",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/collections" },
{ label: "Collections", href: "/collections" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Services",
items: [
{ label: "Wedding Florals", href: "/collections" },
{ label: "Event Arrangements", href: "/collections" },
{ label: "Corporate Flowers", href: "/collections" },
{ label: "Custom Orders", href: "/contact" }
]
},
{
title: "Company",
items: [
{ label: "Blog", href: "#" },
{ label: "Testimonials", href: "/" },
{ label: "Partners", href: "/" },
{ label: "Careers", href: "#" }
]
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Shipping Info", href: "#" },
{ label: "Returns", href: "#" }
]
}
]}
copyrightText="© 2025 Aniona Flowers Studio. Crafted with love and passion."
/>
</ThemeProvider>
);
}