Add initial Next.js dashboard files
This commit is contained in:
15
app/layout.tsx
Normal file
15
app/layout.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
// importing Stylesheet file from the UI folder.
|
||||
import '@/app/ui/global.css';
|
||||
import {inter} from '@/app/ui/fonts'
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${inter.className} antialiased`}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user