Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2025-12-29 19:53:19 +00:00
2 changed files with 18 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Prata } from "next/font/google";
import { Prata, Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
@@ -10,6 +10,11 @@ const prata = Prata({
weight: ["400"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Joule VC | Venture Capital in Tel Aviv",
description: "Israeli venture capital firm investing in infrastructure, fintech, and enterprise software from seed to Series B. Based in Tel Aviv.",
@@ -49,7 +54,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={prata.variable}
className={`${prata.variable} ${inter.variable}`}
>
<Tag />
{children}
@@ -1275,4 +1280,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -26,6 +26,15 @@ export default function LandingPage() {
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<style>{`
body {
font-family: var(--font-inter), sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-prata), serif;
}
`}</style>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Joule VC"
@@ -228,4 +237,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}