Skip to content

Commit 73f4243

Browse files
committed
feat: added manifest.json, tags and icons
1 parent 11c8e20 commit 73f4243

4 files changed

Lines changed: 1033 additions & 2 deletions

File tree

pages/_document.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@ import { Html, Head, Main, NextScript } from 'next/document'
22

33
function Document() {
44
return (
5-
<Html lang="en" data-bs-theme="dark">
5+
<Html lang="en">
66
<Head>
77
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" />
8-
<link rel="icon" href="./favicon.ico" />
8+
<link rel="manifest" href="/backlog-games/manifest.json" />
9+
<link rel="icon" href="/backlog-games/favicon.ico" />
10+
<meta name="theme-color" content="#3c3e4e" />
11+
<meta name="mobile-web-app-capable" content="yes" />
12+
<meta name="apple-mobile-web-app-capable" content="yes" />
13+
<link rel="apple-touch-icon" href="/backlog-games/icons/icon-192.svg" />
914
</Head>
1015
<body data-bs-theme="dark">
1116
<Main />

0 commit comments

Comments
 (0)