shadcn 업데이트 && email components
This commit is contained in:
parent
ae00228de3
commit
d7475dc0eb
60 changed files with 1282 additions and 565 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue