Skip to content

Commit

Permalink
layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibooo25730 committed Jan 21, 2024
1 parent d5119cd commit 1c1cf1b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions web/deskweb/app/layout.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import "@/styles/globals.css"
import { Inter as FontSans } from "next/font/google"

import { cn } from "@/lib/utils"

export const fontSans = FontSans({
subsets: ["latin"],
variable: "--font-sans",
})

export default function RootLayout({ children }) {
return (
<html lang="en" suppressHydrationWarning >
<head />
<body
className={cn(
"min-h-screen bg-background font-sans antialiased",
fontSans.variable
)}
>
{children}
</body>
</html>
)
}

0 comments on commit 1c1cf1b

Please sign in to comment.