update all deps

This commit is contained in:
2026-03-10 19:17:15 +01:00
parent 4b1084d826
commit 7a8736d9c5
17 changed files with 173 additions and 201 deletions

View File

@@ -13,7 +13,7 @@ import GsapProvider from "./_providers/GsapProvicer";
import { CodeHighlightStyle } from "./_components/CodeHighlightSyle";
import { cn } from "~/lib/utils";
const inter = Inter({subsets:['latin'],variable:'--font-sans'});
const inter = Inter({ subsets: ['latin'], variable: '--font-sans' });
config.autoAddCss = false;
@@ -37,22 +37,22 @@ export default async function RootLayout({
return (
<ClerkProvider>
<TrpcProvider>
<ThemeProvider>
<GsapProvider>
<html lang="en" className={cn(geist.variable, "font-sans", inter.variable)} suppressHydrationWarning>
<head>
<CodeHighlightStyle/>
</head>
<body className="flex flex-col bg-background text-foreground">
<GsapProvider>
<html lang="en" className={cn(geist.variable, "font-sans", inter.variable)} suppressHydrationWarning>
<head>
<CodeHighlightStyle />
</head>
<body className="flex flex-col bg-background text-foreground">
<ThemeProvider>
<TopNav />
<main className="absolute lg:top-10 h-[100vh] w-[100vw]">
{children}
<main className="absolute lg:top-10 h-screen w-screen">
{children}
</main>
{modal}
</body>
</html>
</GsapProvider>
</ThemeProvider>
</ThemeProvider>
</body>
</html>
</GsapProvider>
</TrpcProvider>
</ClerkProvider>
);