Update src/app/about/page.tsx

This commit is contained in:
2026-04-21 17:09:52 +00:00
parent 08bea816a5
commit d367e899a9

View File

@@ -1,27 +1,50 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function AboutPage() {
return (
<ThemeProvider>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Shipping", id: "/shipping" },
{ name: "All Parrots", id: "/#products" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Feathered Friend"
/>
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "About Our Ethical Mission" }, { type: "text", content: "We are dedicated to providing the highest standard of care for every bird in our sanctuary." }]}
/>
<FooterCard logoText="Feathered Friend" />
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Shipping", id: "/shipping" },
]}
/>
</div>
<div id="about" data-section="about">
<TextSplitAbout
title="About Our Ethical Mission"
description={[
"We are dedicated to providing the highest standard of care for every bird in our sanctuary.", "Our commitment to avian welfare drives every decision we make."
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Feathered Friend"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Shipping", href: "/shipping" }] }
]}
/>
</div>
</ThemeProvider>
);
}