generated from remarkablemark/vite-react-tailwind-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 1.17 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📝</text></svg>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Compare the diff between 2 texts" />
<title>Diff</title>
<!--
GitHub Corners. See https://github.com/remarkablemark/github-corners
-->
<script
src="https://unpkg.com/github-corners/dist/embed.min.js"
data-href="https://github.com/remarkablemark/diff"
data-target="_blank"
async
defer
></script>
<style>
.github-corner > svg {
opacity: 0.5;
transition: opacity 0.4s;
}
.github-corner:hover > svg {
opacity: 1;
}
</style>
</head>
<body
class="flex min-h-screen min-w-80 bg-white text-gray-900 dark:bg-gray-900 dark:text-gray-100"
>
<main
class="mx-auto w-full max-w-(--breakpoint-xl) p-8 text-left"
id="root"
></main>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>