-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1008 Bytes
/
index.html
File metadata and controls
33 lines (33 loc) · 1008 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/logo.svg" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="📑 Compare the diff between 2 texts" />
<meta
name="theme-color"
content="#ffffff"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#111827"
media="(prefers-color-scheme: dark)"
/>
<link rel="apple-touch-icon" href="/logo.svg" />
<title>Diff</title>
<script
src="https://unpkg.com/github-corners/dist/embed.min.js"
data-href="https://github.com/remarkablemark/diff"
data-target="_blank"
async
defer
></script>
</head>
<body class="dark:bg-gray-900">
<div class="mx-auto max-w-(--breakpoint-xl) p-8" id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>