-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 1.33 KB
/
Copy pathindex.html
File metadata and controls
31 lines (26 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>CryptChat — Privacy-First Phishing Protection</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png" />
<!-- Tailwind CDN fallback (if you rely on CDN) -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Optional: GSAP CDN for plain HTML pages (React uses npm import) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.13.0/gsap.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.13.0/ScrollTrigger.min.js" defer></script>
<meta name="description" content="CryptChat — privacy-first demo that intercepts links and checks for phishing using local TFJS and server fallback" />
<style>
:root { --bg: #001217; --accent: #14F195; }
html,body,#root { height: 100%; }
body { margin: 0; background: var(--bg); color: #e6eef2; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
</style>
</head>
<body>
<div id="root"></div>
<!-- Vite / React entry -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>