Last active
March 28, 2024 15:24
-
-
Save assafmo/b7b00a1dec04292eafa613df073f921e to your computer and use it in GitHub Desktop.
SEO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<link rel="icon" type="image/svg+xml" href="/favicon.ico" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<!-- SEO Title --> | |
<meta name="application-name" content="$SHORT_TITLE" /> | |
<meta name="title" content="$TITLE" /> | |
<meta name="twitter:title" content="$TITLE" /> | |
<meta property="og:title" content="$TITLE" /> | |
<!-- SEO Description --> | |
<meta name="description" content="$DESCRIPTION" /> | |
<meta name="twitter:description" content="$DESCRIPTION" /> | |
<meta property="og:description" content="$DESCRIPTION" /> | |
<!-- SEO Image --> | |
<meta name="twitter:image" content="$PREVIEW_IMAGE_URL" /> | |
<meta property="og:image" content="$PREVIEW_IMAGE_URL" /> | |
<!-- SEO Twitter --> | |
<meta name="twitter:card" content="summary_large_image OR summary" /> | |
<meta name="twitter:site" content="@$TWITTER_HANDLE" /> | |
<meta name="twitter:creator" content="@$TWITTER_HANDLE" /> | |
<!-- SEO Facebook/Telegram --> | |
<meta property="og:type" content="website" /> | |
<meta property="og:site_name" content="$NAME" /> | |
<meta property="og:url" content="$WEBSITE_URL" /> | |
<meta property="og:locale" content="en_US" /> | |
<title>$TITLE</title> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script type="module" src="/src/main.tsx"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User-Agent: * | |
User-agent: facebookexternalhit | |
Disallow: | |
User-agent: Twitterbot | |
Disallow: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment