-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (76 loc) · 3.09 KB
/
index.html
File metadata and controls
89 lines (76 loc) · 3.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mobx</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="icon.ico" />
</head>
<body>
<div class="stars"></div>
<nav class="navbar">
<div class="nav-header">
<div class="brand-and-mark" id="brand-logo" role="button" tabindex="0">
<div class="brandmark-circle">
<div class="brandmark-inner"></div>
</div>
<div class="nav-brand">mobx</div>
</div>
<button class="hamburger" aria-label="Toggle menu" id="hamburger-btn">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
</div>
<ul class="nav-links" id="nav-links">
<li><button class="nav-btn active" data-target="home">Home</button></li>
<li><button class="nav-btn" data-target="capy">Capybaras</button></li>
<li><button class="nav-btn" data-target="downloads">Downloads</button></li>
</ul>
</nav>
<main class="app-container">
<section id="home" class="page-section active">
<div class="hero">
<h1 class="typewriter" aria-label="mobx">
<span id="typed-text"></span><span class="cursor" aria-hidden="true">_</span>
</h1>
<p class="subtitle">Welcome to my corner of the cosmos.</p>
</div>
</section>
<section id="capy" class="page-section">
<div class="glass-card capy-card">
<h2>Capybara Generator</h2>
<div id="image-wrap" class="image-wrap is-loading" aria-busy="true">
<div class="skeleton" aria-hidden="true"></div>
<img class="loader-gif" src="skeleton.gif" alt="" aria-hidden="true" />
<img id="capy-img" src="" alt="Random capybara" class="capy-img" />
</div>
<div id="fact-box" class="fact-box" aria-live="polite">
<p class="fact-label">Did you know?</p>
<p id="capy-fact" class="fact-text">Loading a capybara fact...</p>
</div>
<button id="new-capy-btn" class="glow-btn" type="button">
Summon Another Capy
</button>
</div>
</section>
<section id="downloads" class="page-section">
<div class="section-header">
<h2>My Creations</h2>
<p>Resources, templates, and scripts.</p>
</div>
<div class="grid-container">
<div class="glass-card download-card">
<h3>School LaTeX Template</h3>
<p>A clean, pre-configured template for projects and lab assignments.</p>
<a href="files/FEKT_Project_Template.zip" class="glow-btn small-btn" download>Download</a>
</div>
</div>
</section>
</main>
<script src="main.js"></script>
</body>
</html>