Update src/app/layout.tsx

This commit is contained in:
2025-12-29 19:53:14 +00:00
parent 0ff8bb458e
commit 3116b6328a

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}
@@ -1275,4 +1280,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }