Initial commit
This commit is contained in:
109
src/app/faq/page.tsx
Normal file
109
src/app/faq/page.tsx
Normal file
@@ -0,0 +1,109 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function FaqPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Approach", id: "/approach" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "FAQ", id: "/faq" }
|
||||
]}
|
||||
button={{ text: "Get in Touch", href: "/contact" }}
|
||||
brandName="PitchDrive"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What stage do you invest in?",
|
||||
content: "We focus on early-stage startups from pre-seed through Series A. We believe in founder-market fit and clear product-market traction."
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "What's your typical check size?",
|
||||
content: "We typically invest €100K to €500K in initial rounds, with follow-on capacity in subsequent funding rounds for portfolio companies showing strong momentum."
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you take board seats?",
|
||||
content: "Yes, we take board seats when appropriate and maintain active partnerships with our founders. Our approach is collaborative, not controlling."
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "How long is the pitch process?",
|
||||
content: "We typically move quickly. After initial submission, you can expect a decision within 2-3 weeks if we're interested in moving forward."
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Do you only invest in tech?",
|
||||
content: "While tech is our core focus, we invest in innovative founders across sectors including deeptech, healthtech, fintech, and sustainable innovation."
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
title: "Are you based only in Antwerp?",
|
||||
content: "We're based in Antwerp but invest across Europe. Our thesis focuses on European founders building global companies."
|
||||
}
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Everything you need to know about PitchDrive and our investment process."
|
||||
textPosition="left"
|
||||
useInvertedBackground="noInvert"
|
||||
animationType="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Investment Approach", href: "/approach" },
|
||||
{ label: "Portfolio", href: "/portfolio" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Founder Guide", href: "https://resources.pitchdrive.vc" },
|
||||
{ label: "Blog", href: "https://blog.pitchdrive.vc" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com/company/pitchdrive-vc" },
|
||||
{ label: "Twitter", href: "https://twitter.com/pitchdrive" },
|
||||
{ label: "Email", href: "mailto:hello@pitchdrive.vc" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 PitchDrive VC. All rights reserved. Based in Antwerp, Belgium."
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user