Skip to content

Commit

Permalink
remove viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
Rllyyy committed Dec 10, 2023
1 parent 68f2dc0 commit 3824a10
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 3824a10

Please sign in to comment.