Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4ce3db75e | |||
| dc6abfca3b | |||
| 8cedce609a | |||
| e3338c390c | |||
| eeff5b28c1 | |||
| e73a575009 | |||
| 07eeaff60b | |||
| 71b9f842c6 |
@@ -7,11 +7,16 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { Award, Briefcase, CheckCircle, Lightbulb, Rocket, Target, TrendingUp, Zap } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleDemoSubmit = (data: Record<string, string>) => {
|
||||
console.log('Demo request submitted:', data);
|
||||
// Handle form submission here
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -168,21 +173,22 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactSplit
|
||||
tag="Get Started"
|
||||
tagIcon={Rocket}
|
||||
tagAnimation="slide-up"
|
||||
<ContactSplitForm
|
||||
title="See Your Free Demo Website Today"
|
||||
description="No credit card required. No commitment. Just a professional website built for your business, so you can see exactly what's possible before making any decision."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/digital-devices-screen-editable_24972-2368.jpg"
|
||||
imageAlt="Website mockup on devices"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your@business.com"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "your@business.com", required: true },
|
||||
{ name: "businessName", type: "text", placeholder: "Business Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Tell us about your business (optional)", rows: 4
|
||||
}}
|
||||
buttonText="Request Free Demo"
|
||||
termsText="We'll build a sample website for your business within 48 hours and send you a link to review. No spam, no pressure to buy."
|
||||
onSubmit={handleDemoSubmit}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user