Skip to content

Commit d15beb0

Browse files
Create index.html
1 parent 93c3399 commit d15beb0

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<title>Web4 OS</title>
7+
8+
<link rel="stylesheet" href="./assets/css/style.css">
9+
</head>
10+
11+
<body>
12+
13+
<!-- Background Layers -->
14+
<div class="mesh-gradient"></div>
15+
<div class="noise-overlay"></div>
16+
<div id="glow-cursor"></div>
17+
18+
<!-- NAVBAR -->
19+
<nav class="navbar">
20+
<div class="logo">WEB4</div>
21+
<div class="nav-links">
22+
<a href="#">Home</a>
23+
<a href="https://github.com/web4application" target="_blank">Projects</a>
24+
<a href="https://www.theverge.com" target="_blank">News</a>
25+
</div>
26+
</nav>
27+
28+
<!-- DASHBOARD -->
29+
<main class="dashboard">
30+
31+
<section class="glass-panel tilt" id="hero-card">
32+
<span class="badge">Active Session</span>
33+
<h1>Hello World</h1>
34+
<p>Web4 OS is live. Modular intelligence layer initialized.</p>
35+
<button class="btn-primary">Get Started</button>
36+
</section>
37+
38+
<section class="glass-panel">
39+
<span class="badge">Project</span>
40+
<h2>Glass UI Engine</h2>
41+
<p>Adaptive interface system built for next-gen web apps.</p>
42+
</section>
43+
44+
</main>
45+
46+
<!-- NEWS BAR -->
47+
<div class="news-bar">
48+
<div class="ticker-wrapper">
49+
<div class="ticker-text" id="ticker">
50+
Syncing intelligence feed...
51+
</div>
52+
</div>
53+
</div>
54+
55+
<!-- SCRIPTS -->
56+
<script src="./assets/js/ui.js"></script>
57+
<script src="./assets/js/news.js"></script>
58+
<script src="./assets/js/app.js"></script>
59+
60+
</body>
61+
</html>

0 commit comments

Comments
 (0)