26 lines
412 B
TypeScript
26 lines
412 B
TypeScript
import { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Dashboard',
|
|
description: 'Webapp dashboard'
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
<body
|
|
className={`antialiased bg-background h-full`}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|