-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (18 loc) · 806 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (18 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self' 'unsafe-inline' 'unsafe-eval' http://localhost:5173 ws://localhost:5173 data: app: file: blob: https://fonts.googleapis.com https://fonts.gstatic.com;">
<title>PromptVault</title>
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet">
</head>
<body class="bg-background text-gray-200 overflow-hidden h-screen w-screen">
<div id="root" class="h-full w-full"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>