This commit is contained in:
sasha-astiadi 2024-10-10 16:54:41 +02:00
parent 30ef4d9633
commit a9570ad089
11 changed files with 11 additions and 7 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +1,7 @@
{
"/_not-found/page": "app/_not-found/page.js",
"/(main)/page": "app/(main)/page.js",
"/features/page": "app/features/page.js",
"/about/page": "app/about/page.js",
"/heroverse/page": "app/heroverse/page.js",
"/usecases/page": "app/usecases/page.js"
"/usecases/page": "app/usecases/page.js",
"/heroverse/page": "app/heroverse/page.js"
}

File diff suppressed because one or more lines are too long

View File

@ -125,7 +125,7 @@
/******/
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
/******/ __webpack_require__.h = () => ("50284207a515c0f7")
/******/ __webpack_require__.h = () => ("65841346ad6c56f4")
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */

File diff suppressed because one or more lines are too long

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -21,8 +21,7 @@ export const metadata = {
template: '%s - OurVerse',
default: 'OurVerse - A community-driven Metaverse Platform',
},
description:
'The Future of Collaboration is Now.',
description: 'The Future of Collaboration is Now.',
}
export default function RootLayout({ children }) {
@ -35,6 +34,10 @@ export default function RootLayout({ children }) {
dmSans.variable,
)}
>
<head>
<link rel="icon" href="/favicon.ico" />
{/* You can add more links or meta tags here if needed */}
</head>
<body className="flex min-h-full">
<div className="flex w-full flex-col">{children}</div>
</body>