diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index 54313e76d..e2c39a8cd 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx @@ -1,21 +1,22 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; -import { Providers } from "./providers"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; +import { Providers } from './providers'; +import Navbar from '@/components/navbar'; const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], + variable: '--font-geist-sans', + subsets: ['latin'], }); const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Assets Up", - description: "Modern Assets and Inventory Management Platform", + title: 'Assets Up', + description: 'Modern Assets and Inventory Management Platform', }; export default function RootLayout({ @@ -28,8 +29,9 @@ export default function RootLayout({
+