Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dfbf0f40fb | |||
| 02e6d68d42 | |||
| 6848704daa |
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fff8f5;;
|
--background: #ffffff;;
|
||||||
--card: #fff0eb;;
|
--card: #fcfcfc;;
|
||||||
--foreground: #3d2c29;;
|
--foreground: #000000e6;;
|
||||||
--primary-cta: #e8a090;;
|
--primary-cta: #409fff;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #f5d5cc;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #f0c4b8;;
|
--background-accent: #c4c4c4;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-source-serif-4), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-source-serif-4), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Source_Serif_4 } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const sourceSerif4 = Source_Serif_4({
|
const inter = Inter({
|
||||||
variable: "--font-source-serif-4",
|
variable: "--font-inter",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -49,7 +49,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${sourceSerif4.variable} antialiased`}
|
className={`${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1275,4 +1275,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user