initial setup

navbar styling
This commit is contained in:
Zubair Mughal
2024-03-24 12:32:31 -05:00
parent 3a18f9a098
commit cfdc043a5f
14 changed files with 141 additions and 122 deletions

12
app/product/layout.tsx Normal file
View File

@@ -0,0 +1,12 @@
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js'
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}