Add src/app/about/page.tsx

This commit is contained in:
2026-02-13 14:04:53 +00:00
parent 92e12edbd3
commit 69d9c4873b

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

@@ -0,0 +1,106 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import FooterBase from '@/components/sections/footer/FooterBase';
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="largeSmall"
background="fluid"
cardStyle="soft-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Paw Paradise"
navItems={navItems}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "About " },
{
type: "image", src: "https://img.b2bpic.net/free-photo/pretty-young-woman-petting-her-dog_23-2148740455.jpg", alt: "Dogs playing in a shelter"
},
{ type: "text", content: " Our Mission at Paw Paradise" },
]}
buttons={[
{ text: "Learn More", href: "#" },
{ text: "Meet Our Team", href: "#team" },
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
ariaLabel="About Paw Paradise pet shelter"
className="py-12 md:py-20"
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
title="Meet Our Dedicated Team"
description="The compassionate individuals who make Paw Paradise a loving home for every animal."
members={[
{
id: "1", name: "Dr. Alex Chen", role: "Veterinarian", imageSrc: "https://img.b2bpic.net/free-photo/happy-man-with-thumbs-up_1187-3144.jpg", imageAlt: "Portrait of Dr. Alex Chen"
},
{
id: "2", name: "Maria Garcia", role: "Operations Manager", imageSrc: "https://img.b2bpic.net/free-photo/close-up-beautiful-joyful-african-student-woman-with-dark-wavy-hair-green-cardigan-sitting-cafe-drinking-cup-coffee-smiling-camera-woman-waiting-her-boyfriend-after-university_176420-12329.jpg", imageAlt: "Portrait of Maria Garcia"
},
]}
gridVariant="uniform-all-items-equal"
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Paw Paradise Team"
className="py-12 md:py-20"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Adopt", items: [
{ label: "Available Pets", href: "/#adopt" },
{ label: "Adoption Process", href: "#" },
],
},
{
title: "Support", items: [
{ label: "Volunteer", href: "/contact" },
{ label: "Donate", href: "#" },
],
},
{
title: "About Us", items: [
{ label: "Our Story", href: "/about" },
{ label: "Our Team", href: "#team" },
{ label: "FAQs", href: "/contact#faq" },
],
},
]}
logoText="Paw Paradise"
copyrightText="© 2024 Paw Paradise | All rights reserved"
onPrivacyClick={() => console.log('Privacy policy clicked')}
ariaLabel="Site footer"
className="py-12 md:py-20 bg-primary-cta text-white"
/>
</div>
</ThemeProvider>
);
}