-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 2.69 KB
/
index.html
File metadata and controls
80 lines (77 loc) · 2.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Parse DMARC - Email Authentication Monitoring</title>
<meta
name="description"
content="Monitor who's sending email on behalf of your domain. Catch spoofing. Stop phishing. DMARC report parser and dashboard."
/>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Favicons -->
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="48x48" href="/favicon-48x48.png" />
<link rel="apple-touch-icon" sizes="256x256" href="/favicon.png" />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Parse DMARC - Email Authentication Monitoring"
/>
<meta
property="og:description"
content="Monitor who's sending email on behalf of your domain. Catch spoofing. Stop phishing."
/>
<meta property="og:image" content="/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Parse DMARC - Email Authentication Monitoring"
/>
<meta
name="twitter:description"
content="Monitor who's sending email on behalf of your domain. Catch spoofing. Stop phishing."
/>
<meta name="twitter:image" content="/og-image.png" />
<style>
/* Critical CSS to prevent flash of unstyled content */
:root {
--bg-app: #f8fafc;
}
[data-theme="dark"] {
--bg-app: #0f172a;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
background-color: var(--bg-app);
transition: background-color 0.3s;
}
</style>
<!-- Theme initialization (prevents flash) -->
<script>
// Minimal blocking: only use stored preference, defer system preference to later
(function () {
var theme = localStorage.getItem("theme");
if (theme) {
document.documentElement.setAttribute("data-theme", theme);
}
})();
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>