Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b1f7b912b1 | |||
| 1170f75a6f | |||
| eaaf6ea9e2 | |||
| 2439e42a63 | |||
| 186fa09a8f | |||
| 1f92043706 | |||
| bf9bc43ca4 | |||
| db38bd6c69 | |||
| faeaacc4bf | |||
| 3255457ee7 | |||
| 31c7f112eb | |||
| 44f2c3b5f5 | |||
| a7b2d1714f | |||
| 295b9abbac | |||
| 66a655a681 | |||
| 0658b05349 | |||
| a3fa5f7697 | |||
| 34fd7af964 | |||
| 60ee1823e5 | |||
| 7bc548d8db |
@@ -7,7 +7,7 @@
|
|||||||
--background: #ffffff;;
|
--background: #ffffff;;
|
||||||
--card: #fcfcfc;;
|
--card: #fcfcfc;;
|
||||||
--foreground: #000000e6;;
|
--foreground: #000000e6;;
|
||||||
--primary-cta: #409fff;;
|
--primary-cta: #3b82f6;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #c4c4c4;;
|
--background-accent: #c4c4c4;;
|
||||||
@@ -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-inter), sans-serif;
|
font-family: var(--font-cormorant-garamond), 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-inter), sans-serif;
|
font-family: var(--font-cormorant-garamond), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Inter } from "next/font/google";
|
import { Cormorant_Garamond } 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 inter = Inter({
|
const cormorantGaramond = Cormorant_Garamond({
|
||||||
variable: "--font-inter",
|
variable: "--font-cormorant-garamond",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -49,7 +50,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${inter.variable} antialiased`}
|
className={`${cormorantGaramond.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
@@ -1275,4 +1276,4 @@ export default function RootLayout({
|
|||||||
</ServiceWrapper>
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -20,7 +20,7 @@ export default function LandingPage() {
|
|||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="noiseGradient"
|
background="noiseGradient"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="radial-glow"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
@@ -124,48 +124,48 @@ export default function LandingPage() {
|
|||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "capital",
|
id: "capital",
|
||||||
tag: "Capital",
|
tag: "Investment",
|
||||||
price: "$250K",
|
period: "Flexible Terms",
|
||||||
period: "- $2M",
|
price: "$250K+",
|
||||||
description: "Flexible funding solutions from early-stage to growth rounds. Custom deal structures tailored to your needs.",
|
description: "Comprehensive funding solutions",
|
||||||
button: { text: "Investment Details", href: "#" },
|
featuresTitle: "What's Included",
|
||||||
featuresTitle: "What's Included:",
|
|
||||||
features: [
|
features: [
|
||||||
"Seed to Series B funding",
|
"Seed to Series B funding",
|
||||||
"Strategic follow-on investments",
|
"Strategic follow-on investments",
|
||||||
"Custom deal structures",
|
"Custom deal structures",
|
||||||
"Fast decision timelines"
|
"Fast decision timelines"
|
||||||
]
|
],
|
||||||
|
button: { text: "Learn More", href: "#" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "mentorship",
|
id: "mentorship",
|
||||||
tag: "Mentorship",
|
tag: "Guidance",
|
||||||
price: "Expert",
|
period: "Ongoing Support",
|
||||||
period: "Guidance",
|
price: "Expert Network",
|
||||||
description: "Industry veteran network providing strategic guidance. Go-to-market strategy and product development support.",
|
description: "Strategic mentorship and guidance",
|
||||||
button: { text: "Meet Our Team", href: "#" },
|
featuresTitle: "Mentorship Benefits",
|
||||||
featuresTitle: "What's Included:",
|
|
||||||
features: [
|
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"
|
||||||
]
|
],
|
||||||
|
button: { text: "Connect", href: "#" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "network",
|
id: "network",
|
||||||
tag: "Network",
|
tag: "Access",
|
||||||
price: "Global",
|
period: "Global Reach",
|
||||||
period: "Connections",
|
price: "International",
|
||||||
description: "Access to Israeli tech ecosystem and US market introductions. Strategic partnerships and customer networks.",
|
description: "Cross-border network access",
|
||||||
button: { text: "Our Network", href: "#" },
|
featuresTitle: "Network Benefits",
|
||||||
featuresTitle: "What's Included:",
|
|
||||||
features: [
|
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"
|
||||||
]
|
],
|
||||||
|
button: { text: "Explore", href: "#" }
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -185,48 +185,48 @@ export default function LandingPage() {
|
|||||||
name: "Avi Peled",
|
name: "Avi Peled",
|
||||||
handle: "@avipeled",
|
handle: "@avipeled",
|
||||||
testimonial: "Joule VC didn't just provide capital—they opened doors across the US market that would have taken us years to access. Their network is invaluable.",
|
testimonial: "Joule VC didn't just provide capital—they opened doors across the US market that would have taken us years to access. Their network is invaluable.",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767391976473-pyurxsk4.jpg",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767391976473-pyurxsk4.jpg"
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2",
|
||||||
name: "Sarah Chen",
|
name: "Sarah Chen",
|
||||||
handle: "@sarahchen_bio",
|
handle: "@sarahchen_bio",
|
||||||
testimonial: "The mentorship from the Joule team transformed our product strategy. They understood both the Israeli innovation culture and American market demands.",
|
testimonial: "The mentorship from the Joule team transformed our product strategy. They understood both the Israeli innovation culture and American market demands.",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392019792-uswlqn6z.jpg",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392019792-uswlqn6z.jpg"
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3",
|
||||||
name: "David Rosenberg",
|
name: "David Rosenberg",
|
||||||
handle: "@davidrosenberg",
|
handle: "@davidrosenberg",
|
||||||
testimonial: "What impressed us most was their hands-on approach. They're true partners, not just investors. Best decision we made early on.",
|
testimonial: "What impressed us most was their hands-on approach. They're true partners, not just investors. Best decision we made early on.",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392020194-wypti3l4.jpg",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392020194-wypti3l4.jpg"
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4",
|
||||||
name: "Noga Tzemach",
|
name: "Noga Tzemach",
|
||||||
handle: "@nogaztech",
|
handle: "@nogaztech",
|
||||||
testimonial: "Joule VC understood our vision from day one. They provided not just capital but a roadmap to scale globally. Exceptional partners.",
|
testimonial: "Joule VC understood our vision from day one. They provided not just capital but a roadmap to scale globally. Exceptional partners.",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767391977462-3pyh5z5x.jpg",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767391977462-3pyh5z5x.jpg"
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5",
|
||||||
name: "Michael Torres",
|
name: "Michael Torres",
|
||||||
handle: "@mtorres_ai",
|
handle: "@mtorres_ai",
|
||||||
testimonial: "Their blend of Israeli hustle and American business acumen created the perfect environment for us to thrive. Highly recommend.",
|
testimonial: "Their blend of Israeli hustle and American business acumen created the perfect environment for us to thrive. Highly recommend.",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392020955-0tlhn7e2.jpg",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392020955-0tlhn7e2.jpg"
|
rating: 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6",
|
||||||
name: "Yael Steinberg",
|
name: "Yael Steinberg",
|
||||||
handle: "@yaelsteinberg",
|
handle: "@yaelsteinberg",
|
||||||
testimonial: "From pitch to growth, Joule VC provided strategic guidance every step of the way. They truly care about founder success.",
|
testimonial: "From pitch to growth, Joule VC provided strategic guidance every step of the way. They truly care about founder success.",
|
||||||
rating: 5,
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392021397-09avnbnw.jpg",
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767392021397-09avnbnw.jpg"
|
rating: 5
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -319,4 +319,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user