Update src/app/contact/page.tsx

This commit is contained in:
2026-01-22 18:28:34 +00:00
parent 5020488691
commit f811cbf999

View File

@@ -14,7 +14,7 @@ export default function ContactPage() {
borderRadius="sharp"
contentWidth="medium"
sizing="medium"
background="aurora"
background="none"
cardStyle="inset"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
@@ -24,14 +24,14 @@ export default function ContactPage() {
<NavbarLayoutFloatingInline
brandName="Pitchdrive"
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"
text: "Apply for Funding", href: "/contact"
}}
/>
</div>
@@ -50,7 +50,6 @@ export default function ContactPage() {
termsText="We'll review your submission within 2 weeks. By submitting, you agree to our terms and confidentiality agreement."
onSubmit={(email) => {
console.log('Pitch submission:', email);
// Handle form submission logic here
}}
/>
</div>