-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.51 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EoS Marketplace — eApps</title>
<meta name="description" content="The unified marketplace for all EoS applications — browser extensions, desktop apps, mobile apps, and cloud services." />
<link rel="stylesheet" href="css/marketplace.css" />
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml" />
</head>
<body>
<header class="header">
<h1>⚡ EoS Marketplace</h1>
<p>One place for every EoS app — extensions, desktop, mobile, services, and embedded-native apps.</p>
<div class="stats-bar" id="stats">
<!-- populated by JS -->
</div>
</header>
<nav class="toolbar">
<div class="search-box">
<input id="search" type="text" placeholder="Search apps, tags, platforms…" />
</div>
<div class="filter-pills" id="filters">
<!-- populated by JS -->
</div>
</nav>
<main class="grid" id="app-grid">
<div class="empty-state">
<div class="icon">⏳</div>
<p>Loading app catalog…</p>
</div>
</main>
<footer class="footer">
<p>
© 2026 <a href="https://github.com/embeddedos-org">embeddedos-org</a> ·
<a href="https://github.com/embeddedos-org/eApps">GitHub</a> ·
<a href="docs/architecture.md">Architecture</a> ·
<a href="CONTRIBUTING.md">Contribute</a>
</p>
</footer>
<script src="js/marketplace.js"></script>
</body>
</html>