Skip to content

Commit

Permalink
Fix the name of the game
Browse files Browse the repository at this point in the history
  • Loading branch information
sarimash committed Jun 24, 2023
1 parent 41373f5 commit e4eb982
Showing 1 changed file with 58 additions and 34 deletions.
92 changes: 58 additions & 34 deletions client/src/index.html
Original file line number Diff line number Diff line change
@@ -1,37 +1,61 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8"/>
<title>After the End of the World</title>

<base href="/"/>

<meta name="color-scheme" content="light dark"/>
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="msapplication-tap-highlight" content="no"/>

<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#b35cfd">
<link rel="shortcut icon" href="assets/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#b35cfd">
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#b35cfd">

<link rel="manifest" href="assets/favicon/manifest.json">

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<meta name="theme-color" content="#1976d2">
</head>

<body>
<app-root></app-root>
<noscript>Please enable JavaScript to continue using this application.</noscript>
</body>

<head>
<meta charset="utf-8" />
<title>After the End of All Things</title>

<base href="/" />

<meta name="color-scheme" content="light dark" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />

<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon/favicon-16x16.png"
/>
<link
rel="mask-icon"
href="assets/favicon/safari-pinned-tab.svg"
color="#b35cfd"
/>
<link rel="shortcut icon" href="assets/favicon/favicon.ico" />
<meta name="msapplication-TileColor" content="#b35cfd" />
<meta
name="msapplication-config"
content="assets/favicon/browserconfig.xml"
/>
<meta name="theme-color" content="#b35cfd" />

<link rel="manifest" href="assets/favicon/manifest.json" />

<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="theme-color" content="#1976d2" />
</head>

<body>
<app-root></app-root>
<noscript>
Please enable JavaScript to continue using this application.
</noscript>
</body>
</html>

0 comments on commit e4eb982

Please sign in to comment.