Skip to content

Commit

Permalink
fix: Move themeColor into viewport (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuroXina authored Jan 2, 2024
1 parent eb6e79e commit a8ded44
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Metadata, Viewport } from "next";
import { Box } from "@chakra-ui/react";
import { Footer } from "./components/footer";
import { GoogleAnalytics } from "./components/google-analytics";
import { Header } from "./components/header";
import { Metadata } from "next";
import { Navigation } from "./components/navigation";
import { Providers } from "./providers";
import { Suspense } from "react";
Expand All @@ -14,8 +14,11 @@ const siteName = "限界開発鯖";

console.log(baseUrl);

export const metadata: Metadata = {
export const viewport: Viewport = {
themeColor: "#000000",
};

export const metadata: Metadata = {
icons: [siteImage],
title: {
default: siteName,
Expand Down

0 comments on commit a8ded44

Please sign in to comment.