Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1170f75a6f | |||
| 2439e42a63 | |||
| 186fa09a8f | |||
| bf9bc43ca4 | |||
| faeaacc4bf | |||
| 31c7f112eb | |||
| a7b2d1714f | |||
| 295b9abbac | |||
| 0658b05349 | |||
| 34fd7af964 | |||
| 60ee1823e5 |
@@ -7,7 +7,7 @@
|
||||
--background: #ffffff;;
|
||||
--card: #fcfcfc;;
|
||||
--foreground: #000000e6;;
|
||||
--primary-cta: #409fff;;
|
||||
--primary-cta: #3b82f6;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-cormorant-garamond), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
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 { Inter } from "next/font/google";
|
||||
import { Cormorant_Garamond } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
const cormorantGaramond = Cormorant_Garamond({
|
||||
variable: "--font-cormorant-garamond",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
@@ -49,7 +50,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${inter.variable} antialiased`}
|
||||
className={`${cormorantGaramond.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1275,4 +1276,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -20,7 +20,7 @@ export default function LandingPage() {
|
||||
contentWidth="small"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="noiseGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
@@ -124,48 +124,48 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "capital",
|
||||
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:",
|
||||
tag: "Investment",
|
||||
period: "Flexible Terms",
|
||||
price: "$250K+",
|
||||
description: "Comprehensive funding solutions",
|
||||
featuresTitle: "What's Included",
|
||||
features: [
|
||||
"Seed to Series B funding",
|
||||
"Strategic follow-on investments",
|
||||
"Custom deal structures",
|
||||
"Fast decision timelines"
|
||||
]
|
||||
],
|
||||
button: { text: "Learn More", href: "#" }
|
||||
},
|
||||
{
|
||||
id: "mentorship",
|
||||
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:",
|
||||
tag: "Guidance",
|
||||
period: "Ongoing Support",
|
||||
price: "Expert Network",
|
||||
description: "Strategic mentorship and guidance",
|
||||
featuresTitle: "Mentorship Benefits",
|
||||
features: [
|
||||
"Industry veteran network",
|
||||
"Go-to-market strategy",
|
||||
"Product development guidance",
|
||||
"Fundraising support"
|
||||
]
|
||||
],
|
||||
button: { text: "Connect", href: "#" }
|
||||
},
|
||||
{
|
||||
id: "network",
|
||||
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:",
|
||||
tag: "Access",
|
||||
period: "Global Reach",
|
||||
price: "International",
|
||||
description: "Cross-border network access",
|
||||
featuresTitle: "Network Benefits",
|
||||
features: [
|
||||
"Israeli tech ecosystem access",
|
||||
"US market introductions",
|
||||
"Strategic partnerships",
|
||||
"Customer & investor networks"
|
||||
]
|
||||
],
|
||||
button: { text: "Explore", href: "#" }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -185,48 +185,48 @@ export default function LandingPage() {
|
||||
name: "Avi Peled",
|
||||
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.",
|
||||
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",
|
||||
name: "Sarah Chen",
|
||||
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.",
|
||||
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",
|
||||
name: "David Rosenberg",
|
||||
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.",
|
||||
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",
|
||||
name: "Noga Tzemach",
|
||||
handle: "@nogaztech",
|
||||
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",
|
||||
name: "Michael Torres",
|
||||
handle: "@mtorres_ai",
|
||||
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",
|
||||
name: "Yael Steinberg",
|
||||
handle: "@yaelsteinberg",
|
||||
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>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user