Compare commits

..

2 Commits

Author SHA1 Message Date
[dyad]
4970d0117f [dyad] Applied Geist font globally - wrote 1 file(s) 2026-01-30 10:15:41 +01:00
[dyad]
1659519f0a [dyad] Switched font to Geist - wrote 3 file(s), added geist package(s) 2026-01-30 10:13:20 +01:00
4 changed files with 17 additions and 9 deletions

View File

@@ -46,6 +46,7 @@
"cmdk": "^1.1.1",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.6.0",
"geist": "^1.5.1",
"input-otp": "^1.4.2",
"lucide-react": "^0.511.0",
"next": "14.2.3",

12
pnpm-lock.yaml generated
View File

@@ -119,6 +119,9 @@ importers:
embla-carousel-react:
specifier: ^8.6.0
version: 8.6.0(react@18.3.1)
geist:
specifier: ^1.5.1
version: 1.5.1(next@14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
input-otp:
specifier: ^1.4.2
version: 1.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -1411,6 +1414,11 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
geist@1.5.1:
resolution: {integrity: sha512-mAHZxIsL2o3ZITFaBVFBnwyDOw+zNLYum6A6nIjpzCGIO8QtC3V76XF2RnZTyLx1wlDTmMDy8jg3Ib52MIjGvQ==}
peerDependencies:
next: '>=13.2.0'
get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
@@ -3292,6 +3300,10 @@ snapshots:
function-bind@1.1.2: {}
geist@1.5.1(next@14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
dependencies:
next: 14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
get-nonce@1.0.1: {}
glob-parent@5.1.2:

View File

@@ -1,13 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { GeistSans } from "geist/font/sans";
import "./globals.css";
import { Header } from "@/components/header";
const inter = Inter({
subsets: ["latin"],
variable: "--font-sans",
});
export const metadata: Metadata = {
metadataBase: new URL("https://clips.linxweiler.xyz"),
title: "Video Clip Cutter",
@@ -20,9 +15,9 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<html lang="en" className={`${GeistSans.variable} dark`}>
<body
className={`${inter.variable} antialiased`}
className="antialiased"
>
<Header />
{children}

View File

@@ -10,7 +10,7 @@ export default {
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)"],
sans: ["var(--font-geist-sans)"],
},
colors: {
background: 'hsl(var(--background))',