-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
51 lines (48 loc) · 2.19 KB
/
Copy pathgallery.html
File metadata and controls
51 lines (48 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Circuit Gallery | Hardware Simulation</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="gallery.css">
</head>
<body>
<header class="gallery-header">
<div class="header-logo">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#38bdf8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
<line x1="3" y1="9" x2="21" y2="9"></line>
<line x1="9" y1="21" x2="9" y2="9"></line>
</svg>
<h1>Circuit Gallery</h1>
</div>
<div class="header-controls">
<div class="search-box">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#94a3b8" stroke-width="2">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
<input type="text" id="searchInput" placeholder="Search models...">
</div>
<a href="index.html" class="nav-btn">
<span>SIMULATOR</span>
</a>
</div>
</header>
<main class="gallery-main">
<div class="gallery-content">
<div class="gallery-header-info">
<h2>ENGINEERING REPOSITORY</h2>
<p>Access high-fidelity schematic blueprints for neural computational arrays, analog signal processing, and quantum-gate simulation modules. Designed for architectural precision and cross-platform verification.</p>
</div>
<div class="gallery-grid" id="galleryGrid">
<!-- Cards will be populated by gallery.js -->
</div>
</div>
</main>
<script src="src/ui/gallery.js"></script>
</body>
</html>