-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(css): embed watermark in index.html
- Loading branch information
Showing
3 changed files
with
57 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<base href="/" /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> | ||
<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="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#ffffff" /> | ||
|
||
<meta name="description" content="__OG_DESCRIPTION__" /> | ||
<!--apple-touch-icon: 180x180--> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> | ||
<!-- | ||
manifest.json provides metadata used when your web app is installed on a | ||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | ||
--> | ||
<link rel="manifest" href="/manifest.json" /> | ||
<title>__OG_TITLE__</title> | ||
|
||
<!-- Facebook META --> | ||
<meta property="og:site_name" content="__OG_TITLE__" /> | ||
<meta property="og:title" content="__OG_TITLE__" /> | ||
<meta property="og:description" content="__OG_DESCRIPTION__" /> | ||
<meta property="og:image" content="/static/images/__OG_IMAGE__" /> | ||
<meta property="og:type" content="website" /> | ||
|
||
<!-- Twitter META --> | ||
<meta name="twitter:card" content="summary" /> | ||
<meta name="twitter:title" content="__OG_TITLE__" /> | ||
<meta name="twitter:description" content="__OG_DESCRIPTION__" /> | ||
<meta name="twitter:image" content="/static/images/__OG_IMAGE__" /> | ||
<style> | ||
body, #root, form, form > div, div:has(> div > img[alt*="Logo for "]) { | ||
background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100px' width='250px'><text xmlns='http://www.w3.org/2000/svg' x='5' y='80' fill='grey' font-size='16' font-family='sans-serif' transform='rotate(-10)' opacity='0.35'>SPECIMEN - For Demo Only</text></svg>") !important; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
This HTML file is a template. | ||
If you open it directly in the browser, you will see an empty page. | ||
You can add webfonts, meta tags, or analytics to this file. | ||
The build step will place the bundled scripts into the <body> tag. | ||
To begin the development, run `npm start` or `yarn start`. | ||
To create a production bundle, use `npm run build` or `yarn build`. | ||
--> | ||
<script type="module" src="./src/index.tsx"></script> | ||
<script type="module" src="./datadog-chunk.ts"></script> | ||
</body> | ||
</html> |