Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -10,7 +10,8 @@ import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCa
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Linkedin, Twitter, Globe, Zap } from "lucide-react";
|
||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||
import { Linkedin, Twitter, Globe, Zap, FileUp } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -240,6 +241,25 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pitchdeck" data-section="pitchdeck">
|
||||
<ContactCenterForm
|
||||
title="Submit Your Pitch Deck"
|
||||
description="Share your vision with us. Upload your pitch deck along with your company information and we'll review it promptly."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Company Email", required: true },
|
||||
{ name: "company", type: "text", placeholder: "Company Name", required: true },
|
||||
{ name: "pitchdeck", type: "file", placeholder: "Upload Pitch Deck (PDF)", required: true }
|
||||
]}
|
||||
textarea={{ name: "description", placeholder: "Brief Description of Your Company & Vision (max 500 characters)", rows: 4, required: true }}
|
||||
useInvertedBackground="noInvert"
|
||||
buttonText="Submit Pitch Deck"
|
||||
onSubmit={(data) => {
|
||||
console.log("Pitch deck submission:", data);
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
ctaTitle="Ready to scale?"
|
||||
|
||||
Reference in New Issue
Block a user