forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotion_success.html
More file actions
65 lines (65 loc) · 1.82 KB
/
Copy pathnotion_success.html
File metadata and controls
65 lines (65 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<title>Success - OMI Notion Integration</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
max-width: 800px;
margin: 40px auto;
padding: 20px;
text-align: center;
line-height: 1.6;
color: #333;
}
.success-icon {
color: #28a745;
font-size: 48px;
margin-bottom: 20px;
}
.message {
font-size: 24px;
margin-bottom: 30px;
color: #28a745;
}
.description {
color: #666;
margin-bottom: 30px;
}
.info-box {
background-color: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
}
.home-button {
display: inline-block;
padding: 12px 24px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
transition: background-color 0.2s;
}
.home-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="success-icon">✓</div>
<div class="message">Successfully Connected!</div>
<div class="description">
Your Notion workspace has been successfully connected to OMI.
</div>
<div class="info-box">
<div style="margin-bottom: 15px;">
<span>Import in Progress</span>
</div>
<p>You can safely close this window - the import will continue running.</p>
</div>
<a href="/" class="home-button">Import More Content</a>
</body>
</html>