shadcn 업데이트 && email components

This commit is contained in:
암냥 2026-03-26 21:39:11 +09:00
commit d7475dc0eb
No known key found for this signature in database
60 changed files with 1282 additions and 565 deletions

View file

@ -3,6 +3,11 @@ import { ThemeProvider } from "@/components/theme-provider"
import "./globals.css";
import "./scrollbar.css";
import { TooltipProvider } from "@/components/ui/tooltip";
import { Geist } from "next/font/google";
import { cn } from "@/lib/utils";
const geist = Geist({subsets:['latin'],variable:'--font-sans'});
export const metadata: Metadata = {
title: "암냥 | :two_hearts: imnya.ng",
@ -15,7 +20,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="en" suppressHydrationWarning className={cn("font-sans", geist.variable)}>
<head />
<body className="antialiased">
<ThemeProvider
@ -24,7 +29,9 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
{children}
<TooltipProvider>
{children}
</TooltipProvider>
</ThemeProvider>
</body>
</html>