-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
83 lines (75 loc) · 2.23 KB
/
welcome.html
File metadata and controls
83 lines (75 loc) · 2.23 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
81
82
83
<!doctype html>
<html lang="en-AU">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
href="/assets/Good-Native_Hover_App_Logo_Webflow.png"
/>
<title>Welcome - Hover</title>
<link rel="stylesheet" href="/styles/app.css" />
<!-- Sentry Error Monitoring & Performance -->
<script
src="https://browser.sentry-cdn.com/10.38.0/bundle.tracing.replay.min.js"
integrity="sha384-XDXFmBaNWlQ7XLfEYTin+MajORWXtav1ePcSXtuFHSM8q1JXxmiihPepvYcZBLqD"
crossorigin="anonymous"
></script>
<script src="/js/sentry-init.js"></script>
<style>
.welcome-main {
max-width: 980px;
margin: 0 auto;
padding: 32px 20px 60px;
}
.welcome-card {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 14px;
box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
padding: 24px;
}
.welcome-card h1 {
margin: 0 0 8px;
}
.welcome-card p {
margin: 0;
color: #4b5563;
}
.welcome-checklist {
margin: 20px 0 0;
padding-left: 20px;
}
.welcome-checklist li {
margin: 10px 0;
}
.welcome-note {
margin-top: 16px;
font-size: 0.95rem;
color: #6b7280;
}
</style>
<script src="/js/core.js" defer></script>
<script src="/js/gnh-global-nav.js" defer></script>
<script src="/js/gnh-welcome.js" defer></script>
</head>
<body>
<main class="welcome-main">
<section class="welcome-card">
<h1 id="welcomeTitle">Welcome to Hover</h1>
<p>You’re in. This onboarding checklist is a placeholder for now.</p>
<ol class="welcome-checklist">
<li>Confirm your organisation and role</li>
<li>Connect your first platform (Webflow, Slack, or Google)</li>
<li>Create your first cache warming job</li>
<li>Review settings and invite your team</li>
</ol>
<p class="welcome-note">
This page will be expanded into the full onboarding flow.
</p>
</section>
</main>
<div id="authModalContainer"></div>
</body>
</html>