add: bottom nav bar

This commit is contained in:
Mahyar Khanbolooki
2025-07-04 14:03:41 +03:30
parent 76ecb5839e
commit 691dc7c100
17 changed files with 368 additions and 122 deletions
+7 -5
View File
@@ -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>