-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 2.09 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<title>Eisenhower Matrix - Email Productivity for Outlook & Gmail</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="shared/styles/landing.css">
</head>
<body>
<div class="container">
<h1>🎯 Eisenhower Matrix</h1>
<p class="tagline">Master Your Email with the Eisenhower Decision Matrix</p>
<div class="status">
✅ Now Supporting Both Outlook & Gmail!
</div>
<div class="platform-badges">
<span class="badge">📧 Outlook Desktop</span>
<span class="badge">🌐 Outlook Web</span>
<span class="badge">📬 Gmail</span>
<span class="badge">📱 Mobile Ready</span>
</div>
<a href="install.html" class="install-btn">
🚀 One-Click Install
</a>
<div class="features">
<h3>✨ Key Features</h3>
<ul>
<li>Organize emails by urgency & importance</li>
<li>Four-quadrant productivity matrix</li>
<li>Cross-device synchronization</li>
<li>Works in Outlook AND Gmail</li>
<li>Free & open-source</li>
<li>Privacy-focused (no data collection)</li>
</ul>
</div>
<div class="links">
<a href="install.html">📦 Easy Install</a>
<a href="docs/INSTALLATION.md" target="_blank">📖 Full Guide</a>
<a href="outlook/taskpane.html" target="_blank">👀 Preview Outlook UI</a>
<a href="https://github.com/shaia/eisenhower-matrix-addin" target="_blank">💻 GitHub</a>
</div>
<div class="footer">
<p>Open Source • MIT License • Dedicated with ❤️ to Adi A.</p>
<p style="margin-top: 10px; font-size: 0.85em;">
Last updated: <span id="date"></span>
</p>
</div>
</div>
<script>
document.getElementById('date').textContent = new Date().toLocaleDateString();
</script>
</body>
</html>