Files
8c16938e-21e5-4c35-adc0-334…/src/app/about/page.tsx

136 lines
6.1 KiB
TypeScript

"use client";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, Rocket, Users, TrendingUp } from 'lucide-react';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="largeSmall"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Pitchdrive"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Start Pitching", href: "/contact"
}}
/>
</div>
<div id="about-story" data-section="about-story">
<TestimonialAboutCard
tag="Our Story"
tagIcon={Award}
title="Empowering Innovation Across Europe Since 2018"
description="Founded by entrepreneurs for entrepreneurs, Pitchdrive bridges the gap between visionary founders and transformative capital."
subdescription="Brussels, Belgium"
icon={Rocket}
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop"
imageAlt="Pitchdrive headquarters"
useInvertedBackground="noInvert"
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
title="Meet Our Team"
description="Experienced investors, entrepreneurs, and operators dedicated to your success."
tag="Leadership"
tagIcon={Users}
textboxLayout="default"
gridVariant="uniform-all-items-equal"
animationType="slide-up"
members={[
{
id: "1", name: "Marc Dupont", role: "Founding Partner & CEO", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=700&fit=crop", imageAlt: "Marc Dupont"
},
{
id: "2", name: "Claire Rousseau", role: "Partner, Operations", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=700&fit=crop", imageAlt: "Claire Rousseau"
},
{
id: "3", name: "Thomas Berg", role: "Partner, Technology", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=700&fit=crop", imageAlt: "Thomas Berg"
},
{
id: "4", name: "Sophie Leblanc", role: "Investment Director", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=700&fit=crop", imageAlt: "Sophie Leblanc"
}
]}
useInvertedBackground="invertDefault"
/>
</div>
<div id="track-record" data-section="track-record">
<MetricCardEleven
title="Our Track Record"
description="Building tomorrow's market leaders through strategic investment and hands-on support."
tag="Impact"
tagIcon={TrendingUp}
textboxLayout="default"
animationType="slide-up"
metrics={[
{
id: "1", value: "€150M+", title: "Assets Under Management", description: "Capital deployed across promising ventures", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop", imageAlt: "Investment metrics"
},
{
id: "2", value: "50+", title: "Portfolio Companies", description: "European startups in our ecosystem", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop", imageAlt: "Portfolio growth"
},
{
id: "3", value: "10x", title: "Average Return", description: "Median MOIC across successful exits", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop", imageAlt: "Financial returns"
}
]}
useInvertedBackground="noInvert"
/>
</div>
<FooterMedia
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop"
imageAlt="Brussels skyline"
logoText="Pitchdrive"
copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium."
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources", items: [
{ label: "Pitch Deck Template", href: "#" },
{ label: "Founder Resources", href: "#" },
{ label: "Blog", href: "#" }
]
},
{
title: "Contact", items: [
{ label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" },
{ label: "Brussels, Belgium", href: "#" },
{ label: "LinkedIn", href: "#" }
]
}
]}
/>
</ThemeProvider>
);
}