Files
80a3d0de-38be-496f-81c3-423…/src/app/about/page.tsx
2026-05-12 14:49:50 +00:00

103 lines
3.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSmallSizeMediumTitles"
background="noiseDiagonalGradient"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Available Fish", id: "/fish" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="FinHaven"
/>
</div>
<div id="about-inner" data-section="about-inner">
<TextSplitAbout
useInvertedBackground={false}
title="Our Story"
description={[
"Located in the heart of Durbanville, FinHaven was founded to share a genuine passion for the aquatic hobby.", "With over 3 years of specialized industry experience, we ensure that every fish that leaves our garage is healthy, vibrant, and well-adjusted.", "We believe that every home tank deserves expert care, which is why we guide every customer through the process of choosing the perfect addition to their underwater world."]}
/>
</div>
<div id="team" data-section="team">
<TeamCardTen
useInvertedBackground={false}
title="Meet the Team"
tag="Expertise"
membersAnimation="slide-up"
memberVariant="card"
members={[
{
id: "m1", name: "Founder, FinHaven", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-old-man-sitting-terrace_23-2148997298.jpg"},
{
id: "m2", name: "Aquatics Specialist", imageSrc: "http://img.b2bpic.net/free-photo/fisherman-with-fishing-equipment-box_58466-11043.jpg"},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Ready"
title="Start your journey"
description="Have questions about your setup? Contact us today."
buttons={[
{ text: "Contact Us", href: "/contact" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="FinHaven"
columns={[
{
title: "Quick Links", items: [
{ label: "About", href: "/about" },
{ label: "Fish", href: "/fish" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Policy", items: [
{ label: "Collection Only", href: "#" },
{ label: "Privacy Policy", href: "#" },
],
},
]}
copyrightText="© 2025 FinHaven. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}