add: bottom nav bar
This commit is contained in:
+7
-5
@@ -1,20 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Metadata } from "next";
|
||||
import "./globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
title: 'Dashboard',
|
||||
description: 'Webapp dashboard'
|
||||
}
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
|
||||
return (
|
||||
|
||||
<html lang="en">
|
||||
<body
|
||||
className={`antialiased`}
|
||||
className={`antialiased bg-background h-full`}
|
||||
>
|
||||
{children}
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user