feat : add favicon and meta tags
This commit is contained in:
@@ -4,7 +4,45 @@ export default function Document() {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<Head>
|
||||
<link rel="icon" href="/favicon.png" />
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="180x180"
|
||||
href="/apple-touch-icon.png"
|
||||
/>
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="32x32"
|
||||
href="/favicon-32x32.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="16x16"
|
||||
href="/favicon-16x16.png"
|
||||
/>
|
||||
<meta
|
||||
name="description"
|
||||
content="Open source chess app to play, view and analyze your chess games for free from anywhere with Stockfish !"
|
||||
/>
|
||||
|
||||
{/* Balises OG (Facebook & Twitter) */}
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="FreeChess" />
|
||||
<meta property="og:site_name" content="Freechess.web.app" />
|
||||
<meta property="og:url" content="https://freechess.web.app/" />
|
||||
<meta
|
||||
property="og:image"
|
||||
content="https://freechess.web.app/android-chrome-512x512.png"
|
||||
/>
|
||||
<meta
|
||||
property="og:description"
|
||||
content="Open source chess app to play, view and analyze your chess games for free from anywhere with Stockfish !"
|
||||
/>
|
||||
|
||||
{/* Balise Twitter */}
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
|
||||
Reference in New Issue
Block a user