From a602fe3c68d3853ca030dc920ca26494ba52b0f4 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 18 Feb 2025 22:48:38 +0100 Subject: [PATCH] Update --- web/app/layout.tsx | 43 ++++++++----------------------------------- 1 file changed, 8 insertions(+), 35 deletions(-) diff --git a/web/app/layout.tsx b/web/app/layout.tsx index 09eb59e..dd46841 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -1,47 +1,21 @@ import "./globals.css" -import { Inter } from "next/font/google" +import { Inter } from 'next/font/google' import Navbar from "@/components/navbar" import MouseMoveEffect from "@/components/mouse-move-effect" import type React from "react" -import { metadata } from "./metadata" +import { metadata } from './metadata' const inter = Inter({ subsets: ["latin"] }) export { metadata } -export default function RootLayout({ children }: { children: React.ReactNode }) { +export default function RootLayout({ + children, +}: { + children: React.ReactNode +}) { return ( - - {metadata.title?.toString()} - - - - - - - - - - - - - - - - - - - - - - {metadata.icons.icon.map((icon, index) => ( - - ))} - {metadata.icons.apple.map((icon, index) => ( - - ))} - @@ -49,5 +23,4 @@ export default function RootLayout({ children }: { children: React.ReactNode }) ) -} - +} \ No newline at end of file