Update src/app/contact/page.tsx

This commit is contained in:
2026-01-22 18:56:15 +00:00
parent 9179ca211b
commit 4544e02ab5

View File

@@ -16,7 +16,7 @@ export default function ContactPage() {
borderRadius="rounded"
contentWidth="medium"
sizing="largeSmallSizeMediumTitles"
background="aurora"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
@@ -28,7 +28,6 @@ export default function ContactPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Insights", id: "/insights" },
{ name: "Contact", id: "/contact" }
]}
brandName="PitchDrive"
@@ -37,7 +36,7 @@ export default function ContactPage() {
/>
</div>
<div id="contact-form" data-section="contact-form">
<div id="contact" data-section="contact">
<ContactSplitForm
title="Let's Build Something Exceptional"
description="If you're a founder building a category-defining company and looking for a capital partner who understands your vision, we'd love to hear from you."
@@ -48,9 +47,7 @@ export default function ContactPage() {
{ name: "company_website", type: "text", placeholder: "www.yourcompany.com", required: false }
]}
textarea={{
name: "pitch_summary",
placeholder: "Tell us about your company, the problem you're solving, and why now is the right time...",
rows: 6,
name: "pitch_summary", placeholder: "Tell us about your company, the problem you're solving, and why now is the right time...", rows: 6,
required: true
}}
useInvertedBackground="noInvert"
@@ -66,7 +63,7 @@ export default function ContactPage() {
title="Get in Touch"
description="Multiple ways to connect with our investment team and start the conversation"
textboxLayout="default"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
animationType="slide-up"
metrics={[
{ id: "1", icon: Mail, title: "Email", value: "hello@pitchdrive.vc" },
@@ -77,7 +74,7 @@ export default function ContactPage() {
/>
</div>
<div id="contact-faq" data-section="contact-faq">
<div id="faq" data-section="faq">
<FaqDouble
title="Frequently Asked Questions"
description="Everything you need to know about investing with PitchDrive Capital"
@@ -100,7 +97,7 @@ export default function ContactPage() {
logoText="PitchDrive"
copyrightText="© 2025 PitchDrive Capital. All rights reserved."
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Team", href: "/team" }, { label: "Insights", href: "/insights" }] },
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, { label: "Contact", href: "/contact" }] },
{ title: "Resources", items: [{ label: "Portfolio", href: "/portfolio" }, { label: "Blog", href: "https://blog.pitchdrive.vc" }, { label: "Founder Resources", href: "https://resources.pitchdrive.vc" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "hello@pitchdrive.vc", href: "mailto:hello@pitchdrive.vc" }, { label: "Twitter", href: "https://twitter.com/pitchdrive" }] }
]}