-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 1.01 KB
/
index.html
File metadata and controls
27 lines (26 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<title>Leave Intake Wizard React</title>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
// Handle SPA redirect from 404.html
(function() {
var params = new URLSearchParams(window.location.search);
var redirect = params.get('p');
if (redirect) {
var loc = window.location;
var base = loc.pathname.replace(/\/index\.html$/, '').replace(/\/$/, '') + '/';
window.history.replaceState(null, '', base + redirect + loc.hash);
}
})();
</script>
<script src="https://mcp.figma.com/mcp/html-to-design/capture.js" async></script>
<script type="module" src="/src/main.jsx"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>