Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sawaYch committed Mar 1, 2024
1 parent 3f88680 commit b6b38e5
Show file tree
Hide file tree
Showing 9 changed files with 714 additions and 63 deletions.
6 changes: 4 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import Background from '@/components/background';
import { ThemeProvider } from '@/components/theme-provider';
import VoidAnimatedCursor from '@/components/void-animated-cursor';
import { Toaster } from '@/components/ui/toaster';
import { TooltipProvider } from '@/components/ui/tooltip';
import { cn } from '@/lib/utils';

const inter = Inter({ subsets: ['latin'] });

Expand All @@ -21,7 +23,7 @@ export default function RootLayout({
}>) {
return (
<html lang='en' suppressHydrationWarning>
<body className={inter.className}>
<body className={cn('overflow-x-hidden', inter.className)}>
<ThemeProvider
attribute='class'
defaultTheme='dark'
Expand All @@ -31,7 +33,7 @@ export default function RootLayout({
<Background />
<VoidAnimatedCursor />
<Toaster />
{children}
<TooltipProvider>{children}</TooltipProvider>
</ThemeProvider>
</body>
</html>
Expand Down
Loading

0 comments on commit b6b38e5

Please sign in to comment.