Initial commit

This commit is contained in:
DK
2026-01-22 09:55:07 +00:00
commit e6528a09fc
302 changed files with 58114 additions and 0 deletions

110
src/app/thesis/page.tsx Normal file
View File

@@ -0,0 +1,110 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Lightbulb } from "lucide-react";
export default function ThesisPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="PitchDrive VC"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Apply for Funding",
href: "/contact"
}}
/>
</div>
<div id="thesis" data-section="thesis">
<FeatureCardOne
title="Our Investment Thesis"
description="We focus on founder-led companies with exceptional unit economics, ambitious TAM, and teams that execute at the highest level. We believe the next wave of European tech champions will emerge from diverse ecosystems like Antwerp."
tag="How We Invest"
tagIcon={Lightbulb}
textboxLayout="default"
gridVariant="one-large-right-three-stacked-left"
animationType="blur-reveal"
useInvertedBackground="noInvert"
features={[
{
title: "Founder-First Approach",
description: "We back exceptional founders with proven ability to execute and adapt. Your success is our success.",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-business-items-with-growth-chart-hands-fists_23-2148780564.jpg"
},
{
title: "Europe-Ready Focus",
description: "We specialize in companies building for the European market with global ambitions.",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-business-items-with-growth-chart-hands-fists_23-2148780564.jpg"
},
{
title: "Hands-On Support",
description: "Active board participation, strategic introductions, and operational guidance from day one.",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-business-items-with-growth-chart-hands-fists_23-2148780564.jpg"
},
{
title: "Patient Capital",
description: "We take long-term views aligned with founder vision, supporting multiple funding rounds.",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-business-items-with-growth-chart-hands-fists_23-2148780564.jpg"
}
]}
/>
</div>
<FooterBase
logoText="PitchDrive VC"
copyrightText="© 2025 PitchDrive Ventures. Based in Antwerp, Belgium."
columns={[
{
title: "Firm",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/team" },
{ label: "Investment Thesis", href: "/thesis" },
{ label: "Blog", href: "#" }
]
},
{
title: "For Founders",
items: [
{ label: "Apply for Funding", href: "/contact" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Resources", href: "#" },
{ label: "FAQ", href: "#" }
]
},
{
title: "Connect",
items: [
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Email", href: "hello@pitchdrive.vc" },
{ label: "Antwerp, Belgium", href: "#" }
]
}
]}
/>
</ThemeProvider>
);
}