Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
101
src/app/page.tsx
101
src/app/page.tsx
@@ -15,7 +15,6 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import { CheckCircle, Users, Zap, ShieldCheck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -43,7 +42,7 @@ export default function LandingPage() {
|
||||
<HeroBillboard
|
||||
title="Bridge the Gap Between EdTech and K-12 Districts"
|
||||
description="We act as your Vendor of Record, simplifying the procurement process so AI-driven education companies can sell directly into public K-12 markets without the bureaucratic friction."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
background={{ variant: 'sparkles-gradient' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,7 +50,7 @@ export default function LandingPage() {
|
||||
<TextSplitAbout
|
||||
title="Why Become a Partner with EdProcure?"
|
||||
description={[
|
||||
"Scaling educational software into K-12 public districts is notoriously slow and difficult. Procurement cycles take months, and districts often reject non-traditional vendors.", "EdProcure changes the game. We act as your established Vendor of Record, providing the legitimacy and infrastructure needed to get purchase orders processed instantly."
|
||||
"Scaling educational software into K-12 public districts is notoriously slow and difficult.", "EdProcure changes the game. We act as your established Vendor of Record."
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -60,125 +59,89 @@ export default function LandingPage() {
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardOne
|
||||
title="Procurement Simplified"
|
||||
description="We handle the back-office complexity so you can focus on building great education products."
|
||||
features={[
|
||||
{ title: "Vendor of Record Service", description: "Legally act as your procurement partner.", imageSrc: "http://img.b2bpic.net/free-photo/person-with-court-hammer_1048-1720.jpg" },
|
||||
{ title: "Instant PO Processing", description: "Reduce sales cycles from months to days.", imageSrc: "http://img.b2bpic.net/free-vector/purchase-online-onboarding-app_23-2148403501.jpg" },
|
||||
{ title: "Nationwide Access", description: "Access thousands of school districts.", imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062210.jpg" }
|
||||
]}
|
||||
description="Focus on building, we handle the rest."
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
title="Flexible Pricing for Growth"
|
||||
description="Choose the plan that best fits your scaling requirements."
|
||||
plans={[
|
||||
{ id: "starter", badge: "Starter", price: "$499/mo", subtitle: "For early-stage startups", features: ["Up to 5 districts", "Standard support"] },
|
||||
{ id: "growth", badge: "Growth", badgeIcon: CheckCircle, price: "$999/mo", subtitle: "For scaling teams", features: ["Up to 50 districts", "Priority support", "Dedicated account manager"] }
|
||||
]}
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Flexible Pricing Plans"
|
||||
description="Choose the plan that fits your growth stage."
|
||||
animationType="slide-up"
|
||||
plans={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="Key Impact Metrics"
|
||||
description="Data-driven results for EdTech companies."
|
||||
metrics={[
|
||||
{ id: "m1", value: "150+", title: "Districts", description: "Districts served nationwide.", icon: Users },
|
||||
{ id: "m2", value: "75%", title: "Faster", description: "Reduced sales cycle time.", icon: Zap },
|
||||
{ id: "m3", value: "$50M", title: "Volume", description: "Annual PO processing volume.", icon: ShieldCheck }
|
||||
]}
|
||||
title="Impact Metrics"
|
||||
description="See the value we deliver."
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
title="Meet Our Procurement Experts"
|
||||
description="A team dedicated to your market growth."
|
||||
members={[
|
||||
{ id: "1", name: "Alex Rivera", role: "Director of Procurement" },
|
||||
{ id: "2", name: "Jamie Smith", role: "K-12 Relations Lead" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Team"
|
||||
description="Meet the experts behind EdProcure."
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
members={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
title="What Our Partners Say"
|
||||
description="Join the growing list of successful EdTech companies."
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah Jenkins", role: "Founder", company: "EdTech Co", rating: 5 }
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
description="Trusted by leaders in EdTech."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
testimonials={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries regarding our services."
|
||||
faqs={[
|
||||
{ id: "1", title: "How does it work?", content: "We serve as your Vendor of Record." },
|
||||
{ id: "2", title: "Is it compliant?", content: "Yes, we ensure all K-12 requirements are met." }
|
||||
]}
|
||||
description="Answers to common questions about our procurement services."
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
title="Start Your Partnership"
|
||||
description="Ready to scale your market presence?"
|
||||
tag="Contact Sales"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
tag="Contact"
|
||||
title="Let's Connect"
|
||||
description="Get in touch with us today."
|
||||
background={{ variant: 'sparkles-gradient' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Leading Platforms"
|
||||
names={["Google", "Microsoft", "Canvas", "Clever"]}
|
||||
description="Leading education platforms partner with our network."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Partner A", "Partner B", "Partner C"]}
|
||||
title="Trusted Partners"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="EdProcure"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/education-information-school-ideas-concept_53876-120603.jpg"
|
||||
columns={[{ title: "Company", items: [{ label: "About", href: "#about" }] }]}
|
||||
columns={[]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-equipped-computer-lab_23-2149241207.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="section"
|
||||
title="Terms and Conditions"
|
||||
sections={[{ heading: "Data Privacy", content: { type: "paragraph", text: "We protect your data." } }]}
|
||||
title="Legal"
|
||||
sections={[]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user