init
This commit is contained in:
@@ -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 (
|
||||
<html
|
||||
lang="pl"
|
||||
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
||||
className={`${geistSans.variable} ${geistMono.variable} ${spaceGrotesk.variable} h-full antialiased`}
|
||||
>
|
||||
<body className="min-h-full flex flex-col bg-bg text-fg">
|
||||
{session && <Nav />}
|
||||
|
||||
Reference in New Issue
Block a user