2 Commits

Author SHA1 Message Date
76d580b991 Update src/app/page.tsx 2025-12-29 19:53:15 +00:00
3116b6328a Update src/app/layout.tsx 2025-12-29 19:53:14 +00:00
2 changed files with 18 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Prata } from "next/font/google"; import { Prata, 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";
@@ -10,6 +10,11 @@ const prata = Prata({
weight: ["400"], weight: ["400"],
}); });
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Joule VC | Venture Capital in Tel Aviv", 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.", 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> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={prata.variable} className={`${prata.variable} ${inter.variable}`}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -26,6 +26,15 @@ export default function LandingPage() {
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="normal" 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"> <div id="nav" data-section="nav">
<NavbarStyleApple <NavbarStyleApple
brandName="Joule VC" brandName="Joule VC"