Update src/app/page.tsx

This commit is contained in:
2026-01-02 22:18:06 +00:00
parent 02e6d68d42
commit dfbf0f40fb

View File

@@ -1,10 +1,11 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import TagAbout from '@/components/sections/about/TagAbout'; import TagAbout from '@/components/sections/about/TagAbout';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
@@ -113,48 +114,58 @@ export default function LandingPage() {
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardTwelve <PricingCardFive
title="What We Provide" title="What We Provide"
description="Beyond capital, we offer strategic support to accelerate your growth." description="Beyond capital, we offer strategic support to accelerate your growth."
tag="Services"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
animationType="slide-up" animationType="slide-up"
features={[ plans={[
{ {
id: "capital", id: "capital",
label: "Capital", tag: "Capital",
title: "Flexible Funding Solutions", price: "$250K",
items: [ period: "- $2M",
"Early-stage to growth funding", description: "Flexible funding solutions from early-stage to growth rounds. Custom deal structures tailored to your needs.",
"Seed to Series B rounds", button: { text: "Investment Details", href: "#" },
featuresTitle: "What's Included:",
features: [
"Seed to Series B funding",
"Strategic follow-on investments", "Strategic follow-on investments",
"Custom deal structures" "Custom deal structures",
], "Fast decision timelines"
buttons: [{ text: "Investment Details", href: "#" }] ]
}, },
{ {
id: "mentorship", id: "mentorship",
label: "Mentorship", tag: "Mentorship",
title: "Expert Guidance", price: "Expert",
items: [ period: "Guidance",
description: "Industry veteran network providing strategic guidance. Go-to-market strategy and product development support.",
button: { text: "Meet Our Team", href: "#" },
featuresTitle: "What's Included:",
features: [
"Industry veteran network", "Industry veteran network",
"Go-to-market strategy", "Go-to-market strategy",
"Product development guidance", "Product development guidance",
"Fundraising support" "Fundraising support"
], ]
buttons: [{ text: "Meet Our Team", href: "#" }]
}, },
{ {
id: "network", id: "network",
label: "Network", tag: "Network",
title: "Global Connections", price: "Global",
items: [ period: "Connections",
description: "Access to Israeli tech ecosystem and US market introductions. Strategic partnerships and customer networks.",
button: { text: "Our Network", href: "#" },
featuresTitle: "What's Included:",
features: [
"Israeli tech ecosystem access", "Israeli tech ecosystem access",
"US market introductions", "US market introductions",
"Strategic partnerships", "Strategic partnerships",
"Customer & investor networks" "Customer & investor networks"
], ]
buttons: [{ text: "Our Network", href: "#" }]
} }
]} ]}
/> />
@@ -308,4 +319,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }