Merge version_2 into main #1

Merged
development merged 3 commits from version_2 into main 2026-01-02 22:18:11 +00:00
3 changed files with 46 additions and 35 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #fff8f5;;
--card: #fff0eb;;
--foreground: #3d2c29;;
--primary-cta: #e8a090;;
--background: #ffffff;;
--card: #fcfcfc;;
--foreground: #000000e6;;
--primary-cta: #409fff;;
--secondary-cta: #ffffff;;
--accent: #f5d5cc;;
--background-accent: #f0c4b8;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-source-serif-4), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-source-serif-4), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Source_Serif_4 } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceSerif4 = Source_Serif_4({
variable: "--font-source-serif-4",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -49,7 +49,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSerif4.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -1275,4 +1275,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

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