We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8b435 commit c0c68d8Copy full SHA for c0c68d8
src/app/layout.tsx
@@ -1,4 +1,4 @@
1
-import type { Metadata } from "next";
+import type { Metadata, Viewport } from "next";
2
import { Montserrat, Open_Sans } from "next/font/google";
3
import "./globals.css";
4
import ScrollToTop from "./components/ScrollToTop";
@@ -73,7 +73,6 @@ export const metadata: Metadata = {
73
],
74
locale: "en_US",
75
},
76
- themeColor: "#151414",
77
robots: {
78
index: true,
79
follow: true,
@@ -92,6 +91,10 @@ export const metadata: Metadata = {
92
91
93
};
94
+export const viewport: Viewport = {
95
+ themeColor: "#0d1117",
96
+}
97
+
98
export default function RootLayout({
99
children,
100
}: Readonly<{
0 commit comments