Updated font

This commit is contained in:
2025-09-03 21:48:44 +02:00
parent a5cfbed065
commit 9b2710fc3b
5 changed files with 17 additions and 3 deletions

View File

@@ -72,7 +72,7 @@
--shadow-lg: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 4px 6px -1px hsl(0 0% 0% / 0.10);
--shadow-xl: 0 1px 3px 0px hsl(0 0% 0% / 0.10), 0 8px 10px -1px hsl(0 0% 0% / 0.10);
--shadow-2xl: 0 1px 3px 0px hsl(0 0% 0% / 0.25);
--tracking-normal: 0em;
--tracking-normal: -0.025em;
--spacing: 0.25rem;
}
@@ -166,6 +166,14 @@
--shadow-lg: var(--shadow-lg);
--shadow-xl: var(--shadow-xl);
--shadow-2xl: var(--shadow-2xl);
--tracking-tighter: calc(var(--tracking-normal) - 0.05em);
--tracking-tight: calc(var(--tracking-normal) - 0.025em);
--tracking-normal: var(--tracking-normal);
--tracking-wide: calc(var(--tracking-normal) + 0.025em);
--tracking-wider: calc(var(--tracking-normal) + 0.05em);
--tracking-widest: calc(var(--tracking-normal) + 0.1em);
}
body {

View File

@@ -1,5 +1,7 @@
import "./globals.css"
import { GeistSans as geist } from "geist/font/sans"
import ThemeProvider from "@/components/ThemeProvider"
import { Toaster } from "@/components/ui/sonner"
import type { Metadata } from "next"
@@ -13,7 +15,7 @@ export const metadata: Metadata = {
export default function RootLayout({ children }: LayoutProps<"/">) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="en" suppressHydrationWarning className={geist.className}>
<head>
{/* eslint-disable-next-line @next/next/no-sync-scripts */}
{process.env.NODE_ENV === "development" && <script src="https://unpkg.com/react-scan/dist/auto.global.js" />}