switch to bun, update all packages

This commit is contained in:
2026-03-10 11:00:39 +01:00
parent 276c3dd75f
commit 9a7e8922f8
57 changed files with 4156 additions and 11347 deletions

View File

@@ -1,6 +1,6 @@
import "~/styles/globals.css";
import type { Metadata } from "next";
import { Geist } from "next/font/google";
import { Geist, Inter } from "next/font/google";
import { ClerkProvider } from "@clerk/nextjs";
import { config } from "@fortawesome/fontawesome-svg-core"
import "@fortawesome/fontawesome-svg-core/styles.css"
@@ -11,6 +11,11 @@ import TrpcProvider from "./_trpc/TrpcProvider";
import ThemeProvider from './_providers/ThemeProvider'
import GsapProvider from "./_providers/GsapProvicer";
import { CodeHighlightStyle } from "./_components/CodeHighlightSyle";
import { cn } from "~/lib/utils";
const inter = Inter({subsets:['latin'],variable:'--font-sans'});
config.autoAddCss = false;
export const metadata: Metadata = {
title: "Gregor Lohaus",
@@ -34,7 +39,7 @@ export default async function RootLayout({
<TrpcProvider>
<ThemeProvider>
<GsapProvider>
<html lang="en" className={`${geist.variable}`} suppressHydrationWarning>
<html lang="en" className={cn(geist.variable, "font-sans", inter.variable)} suppressHydrationWarning>
<head>
<CodeHighlightStyle/>
</head>