Files
eb2f9f0f-0790-4d76-bab2-9eb…/src/app/about/page.tsx
2026-03-17 11:29:07 +00:00

130 lines
3.9 KiB
TypeScript

"use client";
import Link from "next/link";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import TextAbout from "@/components/sections/about/TextAbout";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Cartel",
items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "About", href: "/about" },
],
},
{
title: "Operations",
items: [
{ label: "Brand Strategy", href: "/services" },
{ label: "Web Design", href: "/services" },
{ label: "Content Creation", href: "/services" },
{ label: "Apply for Membership", href: "/contact" },
],
},
{
title: "Connect",
items: [
{ label: "Contact", href: "/contact" },
{ label: "Instagram", href: "#" },
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Code of Conduct", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLarge"
background="circleGradient"
cardStyle="glass-depth"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="CATFISH CARTEL"
navItems={navItems}
button={{
text: "Apply for Membership",
href: "/contact",
}}
/>
</div>
<div id="manifesto" data-section="manifesto">
<TextAbout
title="Every brand is a first impression. We make sure yours is unforgettable — even if the reality hasn't caught up yet. Surface level, on purpose."
useInvertedBackground={true}
/>
</div>
<div id="about-story" data-section="about-story">
<MetricCardTen
title="The Origin Story"
description="Since 2026, we've been perfecting the art of transformation. Here's what we've learned."
animationType="slide-up"
textboxLayout="centered"
useInvertedBackground={false}
metrics={[
{
id: "metric-1",
title: "Founded",
subtitle: "in the shadows of ambition",
category: "Journey",
value: "2026",
},
{
id: "metric-2",
title: "Philosophy",
subtitle: "perception is the only reality",
category: "Core Belief",
value: "100%",
},
{
id: "metric-3",
title: "Commitment",
subtitle: "to making the impossible look easy",
category: "Mission",
value: "All In",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2024 Catfish Cartel. All transformations confidential."
bottomRightText="We make the magic. You take the credit."
/>
</div>
</ThemeProvider>
);
}