6 Commits

Author SHA1 Message Date
0baf376dc3 Update src/app/portfolio/page.tsx 2026-01-22 20:53:04 +00:00
b1efae0d90 Update src/app/page.tsx 2026-01-22 20:53:03 +00:00
bfaf1249b0 Update src/app/layout.tsx 2026-01-22 20:53:02 +00:00
f99c8c224a Update src/app/contact/page.tsx 2026-01-22 20:53:02 +00:00
eb7aa310a0 Update src/app/blog/page.tsx 2026-01-22 20:53:01 +00:00
9bf3f58e18 Update src/app/about/page.tsx 2026-01-22 20:53:01 +00:00
6 changed files with 60 additions and 219 deletions

View File

@@ -32,8 +32,7 @@ export default function AboutPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Start Pitching", text: "Start Pitching", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -63,32 +62,16 @@ export default function AboutPage() {
animationType="slide-up" animationType="slide-up"
members={[ members={[
{ {
id: "1", id: "1", name: "Marc Dupont", role: "Founding Partner & CEO", imageSrc: "https://img.b2bpic.net/free-photo/friendly-successful-business-woman-posing-with-arms-crossed_74855-2813.jpg", imageAlt: "Marc Dupont"
name: "Marc Dupont",
role: "Founding Partner & CEO",
imageSrc: "https://img.b2bpic.net/free-photo/friendly-successful-business-woman-posing-with-arms-crossed_74855-2813.jpg",
imageAlt: "Marc Dupont"
}, },
{ {
id: "2", id: "2", name: "Claire Rousseau", role: "Partner, Operations", imageSrc: "https://img.b2bpic.net/free-photo/smiling-middle-aged-business-leader-window_1262-5674.jpg", imageAlt: "Claire Rousseau"
name: "Claire Rousseau",
role: "Partner, Operations",
imageSrc: "https://img.b2bpic.net/free-photo/smiling-middle-aged-business-leader-window_1262-5674.jpg",
imageAlt: "Claire Rousseau"
}, },
{ {
id: "3", id: "3", name: "Thomas Berg", role: "Partner, Technology", imageSrc: "https://img.b2bpic.net/free-photo/front-view-portrait-beautiful-woman_23-2148317338.jpg", imageAlt: "Thomas Berg"
name: "Thomas Berg",
role: "Partner, Technology",
imageSrc: "https://img.b2bpic.net/free-photo/front-view-portrait-beautiful-woman_23-2148317338.jpg",
imageAlt: "Thomas Berg"
}, },
{ {
id: "4", id: "4", name: "Sophie Leblanc", role: "Investment Director", imageSrc: "https://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg", imageAlt: "Sophie Leblanc"
name: "Sophie Leblanc",
role: "Investment Director",
imageSrc: "https://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3797.jpg",
imageAlt: "Sophie Leblanc"
} }
]} ]}
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
@@ -105,28 +88,13 @@ export default function AboutPage() {
animationType="slide-up" animationType="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "€150M+", title: "Assets Under Management", description: "Capital deployed across promising ventures", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Investment metrics"
value: "€150M+",
title: "Assets Under Management",
description: "Capital deployed across promising ventures",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Investment metrics"
}, },
{ {
id: "2", id: "2", value: "50+", title: "Portfolio Companies", description: "European startups in our ecosystem", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Portfolio growth"
value: "50+",
title: "Portfolio Companies",
description: "European startups in our ecosystem",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Portfolio growth"
}, },
{ {
id: "3", id: "3", value: "10x", title: "Average Return", description: "Median MOIC across successful exits", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Financial returns"
value: "10x",
title: "Average Return",
description: "Median MOIC across successful exits",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Financial returns"
} }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -140,24 +108,21 @@ export default function AboutPage() {
copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium." copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium."
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "/portfolio" },
{ label: "Contact", href: "/contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Pitch Deck Template", href: "#" }, { label: "Pitch Deck Template", href: "#" },
{ label: "Founder Resources", href: "#" }, { label: "Founder Resources", href: "#" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" }, { label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" },
{ label: "Brussels, Belgium", href: "#" }, { label: "Brussels, Belgium", href: "#" },
{ label: "LinkedIn", href: "#" } { label: "LinkedIn", href: "#" }

View File

@@ -131,7 +131,7 @@ export default function BlogPage() {
)} )}
<FooterMedia <FooterMedia
imageSrc="asset://footer-media" imageSrc="https://img.b2bpic.net/free-photo/cityscape-frankfurt-downtown-germany_1268-20913.jpg"
imageAlt="Brussels skyline" imageAlt="Brussels skyline"
logoText="Pitchdrive" logoText="Pitchdrive"
copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium." copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium."

View File

@@ -32,8 +32,7 @@ export default function ContactPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Start Pitching", text: "Start Pitching", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -44,34 +43,20 @@ export default function ContactPage() {
description="Send us your deck and let's explore how Pitchdrive can help scale your vision. We respond to promising founders within 48 hours." description="Send us your deck and let's explore how Pitchdrive can help scale your vision. We respond to promising founders within 48 hours."
inputs={[ inputs={[
{ {
name: "founder_name", name: "founder_name", type: "text", placeholder: "Founder Name", required: true
type: "text",
placeholder: "Founder Name",
required: true
}, },
{ {
name: "company_name", name: "company_name", type: "text", placeholder: "Company Name", required: true
type: "text",
placeholder: "Company Name",
required: true
}, },
{ {
name: "email", name: "email", type: "email", placeholder: "Email Address", required: true
type: "email",
placeholder: "Email Address",
required: true
}, },
{ {
name: "phone", name: "phone", type: "tel", placeholder: "Phone Number", required: false
type: "tel",
placeholder: "Phone Number",
required: false
} }
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "Tell us about your startup and why you're seeking investment", rows: 5,
placeholder: "Tell us about your startup and why you're seeking investment",
rows: 5,
required: true required: true
}} }}
imageSrc="https://img.b2bpic.net/free-photo/accountant-busy-modern-startup-agency-imputing-financial-figures-pc_482257-126653.jpg" imageSrc="https://img.b2bpic.net/free-photo/accountant-busy-modern-startup-agency-imputing-financial-figures-pc_482257-126653.jpg"
@@ -106,20 +91,10 @@ export default function ContactPage() {
animationType="slide-up" animationType="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "48h", title: "Response Time", description: "Average time to initial founder response", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Quick response time"
value: "48h",
title: "Response Time",
description: "Average time to initial founder response",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Quick response time"
}, },
{ {
id: "2", id: "2", value: "500+", title: "Pitches Reviewed", description: "Startup applications reviewed annually", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Pitch reviews"
value: "500+",
title: "Pitches Reviewed",
description: "Startup applications reviewed annually",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Pitch reviews"
} }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -133,24 +108,21 @@ export default function ContactPage() {
copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium." copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium."
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "/portfolio" },
{ label: "Contact", href: "/contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Pitch Deck Template", href: "#" }, { label: "Pitch Deck Template", href: "#" },
{ label: "Founder Resources", href: "#" }, { label: "Founder Resources", href: "#" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" }, { label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" },
{ label: "Brussels, Belgium", href: "#" }, { label: "Brussels, Belgium", href: "#" },
{ label: "LinkedIn", href: "#" } { label: "LinkedIn", href: "#" }

View File

@@ -5,37 +5,25 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const ibmPlexSans = IBM_Plex_Sans({ const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans", variable: "--font-ibm-plex-sans", subsets: ["latin"],
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700"], weight: ["100", "200", "300", "400", "500", "600", "700"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Pitchdrive | Belgium Venture Capital & Startup Funding", title: "Pitchdrive | Belgium Venture Capital & Startup Funding", description: "Leading Belgian VC firm investing in innovative startups. Get funded, access mentorship, and join our growing portfolio of European founders.", keywords: ["venture capital Belgium", "startup funding", "VC investor", "Brussels venture fund"],
description: "Leading Belgian VC firm investing in innovative startups. Get funded, access mentorship, and join our growing portfolio of European founders.",
keywords: ["venture capital Belgium", "startup funding", "VC investor", "Brussels venture fund"],
metadataBase: new URL("https://pitchdrive.be"), metadataBase: new URL("https://pitchdrive.be"),
alternates: { alternates: {
canonical: "https://pitchdrive.be" canonical: "https://pitchdrive.be"
}, },
openGraph: { openGraph: {
title: "Pitchdrive | Belgium's Premier Venture Capital Firm", title: "Pitchdrive | Belgium's Premier Venture Capital Firm", description: "Invest in tomorrow's leaders. Join 50+ innovative startups backed by Pitchdrive.", url: "https://pitchdrive.be", siteName: "Pitchdrive", type: "website", images: [
description: "Invest in tomorrow's leaders. Join 50+ innovative startups backed by Pitchdrive.",
url: "https://pitchdrive.be",
siteName: "Pitchdrive",
type: "website",
images: [
{ {
url: "https://img.b2bpic.net/free-photo/start-up-business-goals-strategy_53876-124798.jpg", url: "https://img.b2bpic.net/free-photo/start-up-business-goals-strategy_53876-124798.jpg", alt: "Pitchdrive venture capital"
alt: "Pitchdrive venture capital"
} }
] ]
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "Pitchdrive | Belgium VC Fund", description: "Leading venture capital firm backing innovative European startups", images: ["https://img.b2bpic.net/free-photo/start-up-business-goals-strategy_53876-124798.jpg"]
title: "Pitchdrive | Belgium VC Fund",
description: "Leading venture capital firm backing innovative European startups",
images: ["https://img.b2bpic.net/free-photo/start-up-business-goals-strategy_53876-124798.jpg"]
}, },
robots: { robots: {
index: true, index: true,

View File

@@ -34,15 +34,14 @@ export default function HomePage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Start Pitching", text: "Start Pitching", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboardCarousel
title="Invest in Tomorrow's Leaders" title="Hello world"
description="Pitchdrive is Belgium's premier venture capital firm, partnering with innovative startups to drive transformative growth and create lasting impact across Europe." description="Pitchdrive is Belgium's premier venture capital firm, partnering with innovative startups to drive transformative growth and create lasting impact across Europe."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
tag="VC Fund" tag="VC Fund"
@@ -53,24 +52,19 @@ export default function HomePage() {
]} ]}
mediaItems={[ mediaItems={[
{ {
imageSrc: "https://img.b2bpic.net/free-photo/start-up-business-goals-strategy_53876-124798.jpg", imageSrc: "https://img.b2bpic.net/free-photo/start-up-business-goals-strategy_53876-124798.jpg", imageAlt: "Venture capital investment"
imageAlt: "Venture capital investment"
}, },
{ {
imageSrc: "https://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg", imageSrc: "https://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg", imageAlt: "Technology innovation"
imageAlt: "Technology innovation"
}, },
{ {
imageSrc: "https://img.b2bpic.net/free-photo/word-money-with-silver-coins_23-2147965715.jpg", imageSrc: "https://img.b2bpic.net/free-photo/word-money-with-silver-coins_23-2147965715.jpg", imageAlt: "Financial growth"
imageAlt: "Financial growth"
}, },
{ {
imageSrc: "https://img.b2bpic.net/free-photo/business-team-using-laptop-work_1098-1847.jpg", imageSrc: "https://img.b2bpic.net/free-photo/business-team-using-laptop-work_1098-1847.jpg", imageAlt: "Team collaboration"
imageAlt: "Team collaboration"
}, },
{ {
imageSrc: "https://img.b2bpic.net/free-vector/lucky-guy-winning-prize_74855-11350.jpg", imageSrc: "https://img.b2bpic.net/free-vector/lucky-guy-winning-prize_74855-11350.jpg", imageAlt: "Success stories"
imageAlt: "Success stories"
} }
]} ]}
/> />
@@ -101,32 +95,16 @@ export default function HomePage() {
animationType="slide-up" animationType="slide-up"
features={[ features={[
{ {
id: "01", id: "01", title: "Strategic Guidance", description: "Expert mentorship from successful entrepreneurs and industry leaders to accelerate growth and overcome challenges.", imageSrc: "https://img.b2bpic.net/free-photo/business-scene-top-view_23-2147626514.jpg", imageAlt: "Strategic business guidance"
title: "Strategic Guidance",
description: "Expert mentorship from successful entrepreneurs and industry leaders to accelerate growth and overcome challenges.",
imageSrc: "https://img.b2bpic.net/free-photo/business-scene-top-view_23-2147626514.jpg",
imageAlt: "Strategic business guidance"
}, },
{ {
id: "02", id: "02", title: "Network Access", description: "Connect with our extensive network of partners, customers, and fellow portfolio founders for exponential growth.", imageSrc: "https://img.b2bpic.net/free-vector/communication-banner-set_98292-6531.jpg", imageAlt: "Network and partnerships"
title: "Network Access",
description: "Connect with our extensive network of partners, customers, and fellow portfolio founders for exponential growth.",
imageSrc: "https://img.b2bpic.net/free-vector/communication-banner-set_98292-6531.jpg",
imageAlt: "Network and partnerships"
}, },
{ {
id: "03", id: "03", title: "Capital Injection", description: "Flexible funding rounds tailored to your growth stage, from seed to Series B and beyond.", imageSrc: "https://img.b2bpic.net/free-photo/top-view-assortment-finance-word-sticky-notes_23-2148793747.jpg", imageAlt: "Investment capital"
title: "Capital Injection",
description: "Flexible funding rounds tailored to your growth stage, from seed to Series B and beyond.",
imageSrc: "https://img.b2bpic.net/free-photo/top-view-assortment-finance-word-sticky-notes_23-2148793747.jpg",
imageAlt: "Investment capital"
}, },
{ {
id: "04", id: "04", title: "Active Support", description: "Ongoing operational support including recruitment, legal, and technical expertise whenever you need it.", imageSrc: "https://img.b2bpic.net/free-photo/business-executives-interacting-with-each-other_1170-1787.jpg", imageAlt: "Operational support"
title: "Active Support",
description: "Ongoing operational support including recruitment, legal, and technical expertise whenever you need it.",
imageSrc: "https://img.b2bpic.net/free-photo/business-executives-interacting-with-each-other_1170-1787.jpg",
imageAlt: "Operational support"
} }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -143,20 +121,10 @@ export default function HomePage() {
animationType="slide-up" animationType="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "€150M+", title: "Assets Under Management", description: "Capital deployed across portfolio companies", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Investment metrics"
value: "€150M+",
title: "Assets Under Management",
description: "Capital deployed across portfolio companies",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Investment metrics"
}, },
{ {
id: "2", id: "2", value: "50+", title: "Portfolio Companies", description: "Innovative startups backed since 2018", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Portfolio growth"
value: "50+",
title: "Portfolio Companies",
description: "Innovative startups backed since 2018",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Portfolio growth"
} }
]} ]}
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
@@ -169,28 +137,17 @@ export default function HomePage() {
description="Send us your deck and let's explore how Pitchdrive can help scale your vision. We respond to promising founders within 48 hours." description="Send us your deck and let's explore how Pitchdrive can help scale your vision. We respond to promising founders within 48 hours."
inputs={[ inputs={[
{ {
name: "founder_name", name: "founder_name", type: "text", placeholder: "Founder Name", required: true
type: "text",
placeholder: "Founder Name",
required: true
}, },
{ {
name: "company_name", name: "company_name", type: "text", placeholder: "Company Name", required: true
type: "text",
placeholder: "Company Name",
required: true
}, },
{ {
name: "email", name: "email", type: "email", placeholder: "Email Address", required: true
type: "email",
placeholder: "Email Address",
required: true
} }
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "Tell us about your startup and why you're seeking investment", rows: 5,
placeholder: "Tell us about your startup and why you're seeking investment",
rows: 5,
required: true required: true
}} }}
imageSrc="https://img.b2bpic.net/free-photo/accountant-busy-modern-startup-agency-imputing-financial-figures-pc_482257-126653.jpg" imageSrc="https://img.b2bpic.net/free-photo/accountant-busy-modern-startup-agency-imputing-financial-figures-pc_482257-126653.jpg"
@@ -208,24 +165,21 @@ export default function HomePage() {
copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium." copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium."
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "/portfolio" },
{ label: "Contact", href: "/contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Pitch Deck Template", href: "#" }, { label: "Pitch Deck Template", href: "#" },
{ label: "Founder Resources", href: "#" }, { label: "Founder Resources", href: "#" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" }, { label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" },
{ label: "Brussels, Belgium", href: "#" }, { label: "Brussels, Belgium", href: "#" },
{ label: "LinkedIn", href: "#" } { label: "LinkedIn", href: "#" }

View File

@@ -32,8 +32,7 @@ export default function PortfolioPage() {
{ name: "Contact", id: "/contact" } { name: "Contact", id: "/contact" }
]} ]}
button={{ button={{
text: "Start Pitching", text: "Start Pitching", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -48,25 +47,13 @@ export default function PortfolioPage() {
animationType="slide-up" animationType="slide-up"
products={[ products={[
{ {
id: "1", id: "1", name: "CloudSync", price: "Series A", imageSrc: "https://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991374.jpg", imageAlt: "CloudSync tech startup"
name: "CloudSync",
price: "Series A",
imageSrc: "https://img.b2bpic.net/free-photo/teammates-working-late-office_23-2148991374.jpg",
imageAlt: "CloudSync tech startup"
}, },
{ {
id: "2", id: "2", name: "PayFlow", price: "Series B", imageSrc: "https://img.b2bpic.net/free-photo/saas-concept-collage_23-2149399290.jpg", imageAlt: "PayFlow SaaS platform"
name: "PayFlow",
price: "Series B",
imageSrc: "https://img.b2bpic.net/free-photo/saas-concept-collage_23-2149399290.jpg",
imageAlt: "PayFlow SaaS platform"
}, },
{ {
id: "3", id: "3", name: "ChainVault", price: "Seed", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-cryptocurrwncy-concept_23-2149250213.jpg", imageAlt: "ChainVault fintech"
name: "ChainVault",
price: "Seed",
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-cryptocurrwncy-concept_23-2149250213.jpg",
imageAlt: "ChainVault fintech"
} }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -84,25 +71,13 @@ export default function PortfolioPage() {
animationType="slide-up" animationType="slide-up"
features={[ features={[
{ {
id: "01", id: "01", title: "Fintech Innovation", description: "Digital banking, payment solutions, blockchain technology, and financial infrastructure modernization.", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-cryptocurrwncy-concept_23-2149250213.jpg", imageAlt: "Fintech innovation"
title: "Fintech Innovation",
description: "Digital banking, payment solutions, blockchain technology, and financial infrastructure modernization.",
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-cryptocurrwncy-concept_23-2149250213.jpg",
imageAlt: "Fintech innovation"
}, },
{ {
id: "02", id: "02", title: "B2B SaaS Platforms", description: "Enterprise software, automation tools, data analytics, and cloud-native business solutions.", imageSrc: "https://img.b2bpic.net/free-photo/saas-concept-collage_23-2149399290.jpg", imageAlt: "SaaS platforms"
title: "B2B SaaS Platforms",
description: "Enterprise software, automation tools, data analytics, and cloud-native business solutions.",
imageSrc: "https://img.b2bpic.net/free-photo/saas-concept-collage_23-2149399290.jpg",
imageAlt: "SaaS platforms"
}, },
{ {
id: "03", id: "03", title: "Deep Tech", description: "Artificial intelligence, machine learning, IoT, cybersecurity, and emerging technologies.", imageSrc: "https://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg", imageAlt: "Deep technology"
title: "Deep Tech",
description: "Artificial intelligence, machine learning, IoT, cybersecurity, and emerging technologies.",
imageSrc: "https://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038853.jpg",
imageAlt: "Deep technology"
} }
]} ]}
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
@@ -119,20 +94,10 @@ export default function PortfolioPage() {
animationType="slide-up" animationType="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "€2B+", title: "Combined Portfolio Value", description: "Total valuation across all investments", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Portfolio valuation"
value: "€2B+",
title: "Combined Portfolio Value",
description: "Total valuation across all investments",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Portfolio valuation"
}, },
{ {
id: "2", id: "2", value: "85%", title: "Success Rate", description: "Companies achieving Series A milestones", imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg", imageAlt: "Success metrics"
value: "85%",
title: "Success Rate",
description: "Companies achieving Series A milestones",
imageSrc: "https://img.b2bpic.net/free-photo/growth-status-technology-online-website-concept_53876-21396.jpg",
imageAlt: "Success metrics"
} }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
@@ -146,24 +111,21 @@ export default function PortfolioPage() {
copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium." copyrightText="© 2025 Pitchdrive. All rights reserved. Based in Brussels, Belgium."
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About", href: "/about" }, { label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" }, { label: "Portfolio", href: "/portfolio" },
{ label: "Contact", href: "/contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Pitch Deck Template", href: "#" }, { label: "Pitch Deck Template", href: "#" },
{ label: "Founder Resources", href: "#" }, { label: "Founder Resources", href: "#" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" }, { label: "hello@pitchdrive.be", href: "mailto:hello@pitchdrive.be" },
{ label: "Brussels, Belgium", href: "#" }, { label: "Brussels, Belgium", href: "#" },
{ label: "LinkedIn", href: "#" } { label: "LinkedIn", href: "#" }