-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
175 lines (167 loc) · 8.31 KB
/
Copy pathindex.html
File metadata and controls
175 lines (167 loc) · 8.31 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Boring Club</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" href="Images/logo.png">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<script>
function changeSlide(button, direction) {
const slider = button.closest('.image-slider');
const track = slider.querySelector('.slider-track');
const images = track.querySelectorAll('.slide-img');
const currentActive = track.querySelector('.slide-img.active');
let currentIndex = Array.from(images).indexOf(currentActive);
let nextIndex = currentIndex + direction;
// Handle wrapping
if (nextIndex >= images.length) {
nextIndex = 0;
} else if (nextIndex < 0) {
nextIndex = images.length - 1;
}
// Update active class
currentActive.classList.remove('active');
images[nextIndex].classList.add('active');
}
</script>
</head>
<body>
<header>
<nav class="container">
<div class="nav-content">
<div class="logo">The Boring Club at UW</div>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="resources.html">Resources</a>
<a href="projects.html">Projects</a>
<a href="about.html">About Us</a>
<a href="started.html">Get Started</a>
</div>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero-section">
<img src="Images/TBC_cover.jpg" alt="Landing page hero image" class="hero-background">
</section>
<!-- Who are we Section -->
<section class="who-are-we-section">
<img src="Images/tabling.jpg" alt="The Boring Club members at work" class="who-are-we-background">
<div class="who-are-we-content">
<h2 class="who-are-we-title"><span class='black-highlight'>Who are we?</span></h2>
<p class="who-are-we-description"><span class='black-highlight'>We are an engineering project club!<br>We help UW students build the engineering skills they are passionate about with hands-on learning in a relaxed environment.</span></p>
</div>
</section>
<!-- Projects Section -->
<section class="projects-section">
<div class="container">
<h1>Current Projects</h1>
<div class="grid">
<!-- Siege Devices Project Card -->
<div class="project-card">
<h2>Siege Devices</h2>
<div class="image-slider">
<button class="slider-btn prev-btn" onclick="changeSlide(this, -1)">‹</button>
<div class="slider-container">
<div class="slider-track">
<img class="slide-img active" src="Images/siege.png" alt="siege device">
</div>
</div>
<button class="slider-btn next-btn" onclick="changeSlide(this, 1)">›</button>
</div>
<p>3D design and manufacturing of miniature siege devices.</p>
<span class="tag">2026</span>
<span class="status ongoing">Ongoing</span>
</div>
<!-- Analog Theremin Project Card -->
<div class="project-card">
<h2>Analog Theremin</h2>
<div class="image-slider">
<button class="slider-btn prev-btn" onclick="changeSlide(this, -1)">‹</button>
<div class="slider-container">
<div class="slider-track">
<img class="slide-img active" src="Images/theremin.jpg" alt="theremin">
</div>
</div>
<button class="slider-btn next-btn" onclick="changeSlide(this, 1)">›</button>
</div>
<p>An analog circuit that replicates the functionality of a musical theremin.</p>
<span class="tag">2026</span>
<span class="status ongoing">Ongoing</span>
</div>
<!-- Graphics Architecture Project Card -->
<div class="project-card">
<h2>Graphics Architecture</h2>
<div class="image-slider">
<button class="slider-btn prev-btn" onclick="changeSlide(this, -1)">‹</button>
<div class="slider-container">
<div class="slider-track">
<img class="slide-img active" src="Images/gpustock.jpg" alt="GPU">
</div>
</div>
<button class="slider-btn next-btn" onclick="changeSlide(this, 1)">›</button>
</div>
<p>A digital system design project to architect a Graphical Processing Unit (GPU).</p>
<span class="tag">2026</span>
<span class="status ongoing">Ongoing</span>
</div>
<!-- LIDAR Maze Project Card -->
<div class="project-card">
<h2>LIDAR Maze Solver</h2>
<div class="image-slider">
<button class="slider-btn prev-btn" onclick="changeSlide(this, -1)">‹</button>
<div class="slider-container">
<div class="slider-track">
<img class="slide-img active" src="Images/Lidar.png" alt="Lidar">
</div>
</div>
<button class="slider-btn next-btn" onclick="changeSlide(this, 1)">›</button>
</div>
<p>A digital ground vehicle control system with an FPGA power algorithm designed to solve mazes.</p>
<span class="tag">2026</span>
<span class="status ongoing">Ongoing</span>
</div>
</div>
<div class="all-projects-btn-container">
<a href="projects.html" class="all-projects-btn">All Projects</a>
</div>
</div>
</section>
<!-- Explore Section -->
<section class="explore-section">
<div class="container">
<h2 class="explore-title">You can explore</h2>
<div class="engineering-grid">
<div class="engineering-card">
<img src="Images/propellorTestMotorboat.jpg" alt="Mechanical Engineering" class="engineering-img">
<h4 class="engineering-title"><span class='black-highlight'>Mechanical Engineering</span></h4>
</div>
<div class="engineering-card">
<img src="Images/carcontrol.jpg" alt="Electrical Engineering" class="engineering-img">
<h4 class="engineering-title"><span class='black-highlight'>Electrical Engineering</span></h4>
</div>
<div class="engineering-card">
<img src="Images/gitDemo.png" alt="Computer Engineering" class="engineering-img">
<h4 class="engineering-title"><span class='black-highlight'>Computer Engineering</span></h4>
</div>
</div>
<h3 class="explore-subtitle">and many more!</h3>
</div>
</section>
<!-- Get Involved Section -->
<section class="get-involved-section">
<img src="Images/beginnings.jpg" alt="Bake sale event" class="get-involved-background">
<div class="get-involved-content">
<h2 class="get-involved-title">Want to get involved?</span></h2>
<div class="get-involved-btn-container">
<a href="started.html" class="get-involved-btn">Get Started</a>
</div>
</div>
</section>
</body>
</html>