From 3824a10ea2966bf2c603a74e17b3b415a2e0d958 Mon Sep 17 00:00:00 2001 From: Niklas Fischer Date: Sun, 10 Dec 2023 20:32:45 +0100 Subject: [PATCH] remove viewport --- src/app/layout.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 48835a3..6dc9910 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,20 +5,21 @@ import { Footer } from "@/components/footer"; import "@/app/globals.css"; -import { type Viewport, type Metadata } from "next"; +import { type Metadata } from "next"; import { Providers } from "@/app/providers"; export const metadata: Metadata = { title: "Niklas Fischer", description: "The portfolio of Niklas Fischer", + viewport: "width=device-width, initial-scale=1, minimum-scale=1", }; -export const viewport: Viewport = { - width: "device-width", - initialScale: 1, - minimumScale: 1, - themeColor: "#4f46e5", -}; +// export const viewport: Viewport = { +// width: "device-width", +// initialScale: 1, +// minimumScale: 1, +// themeColor: "#4f46e5", +// }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (