forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (63 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
72 lines (63 loc) · 2.47 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
{% extends "base.html" %}
{% block content %}
<div class="card">
<h2>Import data into omi</h2>
<p>Connect your accounts to import memories into OMI.</p>
<div>
<h3>Available Integrations</h3>
<div style="margin-top: 1.5rem;">
<div class="integration-card">
<h4>Notion</h4>
<p>Extract memories from your Notion pages, databases, and notes.</p>
<a href="/api/notion/auth?uid={{ request.query_params.get('uid', '') }}" class="btn">Connect Notion</a>
</div>
<div class="integration-card" style="opacity: 0.5; pointer-events: none;">
<h4>Google Drive (Coming Soon)</h4>
<p>Extract memories from your Google Documents and other files.</p>
<a href="#" class="btn">Coming Soon</a>
</div>
<div class="integration-card" style="opacity: 0.5; pointer-events: none;">
<h4>Slack (Coming Soon)</h4>
<p>Extract memories from your Slack conversations and channels.</p>
<a href="#" class="btn">Coming Soon</a>
</div>
</div>
</div>
</div>
<div class="card">
<h2>How It Works</h2>
<ol style="padding-left: 1.5rem;">
<li>Connect your account using the buttons above</li>
<li>We'll extract interesting facts and memories about you</li>
<li>These memories will be imported into your OMI account</li>
<li>OMI will use these memories to personalize your experience</li>
</ol>
</div>
<div class="card">
<h2>About This Integration</h2>
<p>This integration allows you to import memories from various sources into your OMI account. We extract interesting facts and preferences about you from your connected accounts and add them to OMI's knowledge base.</p>
<p>Your data is private and secure. We only extract the information you explicitly choose to share.</p>
</div>
{% endblock %}
{% block extra_head %}
<style>
.integration-card {
padding: 1.5rem;
border: 1px solid var(--border);
border-radius: 0.5rem;
background-color: white;
margin-bottom: 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.integration-card h4 {
margin-bottom: 0.5rem;
}
.integration-card p {
margin-bottom: 1.5rem;
color: var(--text-light);
}
</style>
{% endblock %}