Files
resume/app/layout.tsx
evan 15e2f2927b
All checks were successful
Build & Release / build (push) Successful in 1m4s
Build & Release / release (push) Has been skipped
fix: resolve lint errors and unused imports
2026-04-14 20:43:05 +08:00

31 lines
670 B
TypeScript

import { Geist_Mono, Inter } from "next/font/google"
import "./globals.css"
import { ThemeProvider } from "@/components/theme-provider"
import { cn } from "@/lib/utils";
const inter = Inter({subsets:['latin'],variable:'--font-sans'})
const fontMono = Geist_Mono({
subsets: ["latin"],
variable: "--font-mono",
})
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html
lang="en"
suppressHydrationWarning
className={cn("antialiased", fontMono.variable, "font-sans", inter.variable)}
>
<body>
<ThemeProvider>{children}</ThemeProvider>
</body>
</html>
)
}