-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
16 lines (16 loc) · 856 Bytes
/
index.html
File metadata and controls
16 lines (16 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SecuSend</title>
<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@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="font-sans bg-gradient-to-br from-[#111827] to-[#1f2937] text-[#f3f4f6] min-h-screen flex flex-col m-0 p-0 box-border transition-colors duration-500 ease-in-out">
<div id="app" class="flex-grow flex flex-col max-w-[1200px] mx-auto p-[1.5rem] w-full"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>