diff --git a/app/layout.tsx b/app/layout.tsx index 7b1677f..d3d01c5 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,5 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Geist, Geist_Mono, Space_Grotesk } from "next/font/google"; import { Nav } from "@/components/nav"; import { auth } from "@/auth"; import "./globals.css"; @@ -14,6 +14,11 @@ const geistMono = Geist_Mono({ subsets: ["latin"], }); +const spaceGrotesk = Space_Grotesk({ + variable: "--font-space-grotesk", + subsets: ["latin"], +}); + export const metadata: Metadata = { title: "KNUR - Książka Notowań Udźwigów i Rezultatów", description: "Analiza treningów biegowych i siłowych", @@ -29,7 +34,7 @@ export default async function RootLayout({ return ( {session &&