Skip to content

Commit 10f74fd

Browse files
authored
Merge pull request #8 from tiredkangaroo/main
2 parents 666a7c9 + 2097cab commit 10f74fd

4 files changed

Lines changed: 29 additions & 31 deletions

File tree

gallery.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
const IMAGE_HOST = 'https://hackclub.com';
22
const FALLBACK_IMAGES = [
33
//ADD FALLBACK IMAGES HERE!
4-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/b62df713cb00bdfe9d2d3910319da7babce118af_waffle.png',
5-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/a4cdda8aaa878c3d4f4cfce1e641843a93a7b940_img_0769.png',
6-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/0f50a9029a506bb376d6cefaff3549a441cd9a4b_chatgpt-swirl.png',
7-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/43698bb57a93bd8a977fd85b92f00f33ec4ac611_scrapyard-proj-logo.png',
8-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/27cee257bd6155fd84b14cb2feb003cb570d3fc1_lubabaxn-swirl-1.png',
9-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/fb5257c83deeaaf1d5fce9c6c75a297c7f2241b2_lubabaxn-swirl-2.png',
10-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/e81025c39885d2f1fc1334e16d928d515c8031df_lubabaxn-swirl-3.png',
11-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/3e0f17e9a7e8083ffe562c146ce6ffb8c0f2150e_swirl-sticker-submission.png',
12-
'https://hc-cdn.hel1.your-objectstorage.com/s/v3/c34a3834cf6e419da4cfc2147b2bf370e86c3e95_alb-swirl.png',
4+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/b62df713cb00bdfe9d2d3910319da7babce118af_waffle.png',
5+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/a4cdda8aaa878c3d4f4cfce1e641843a93a7b940_img_0769.png',
6+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/0f50a9029a506bb376d6cefaff3549a441cd9a4b_chatgpt-swirl.png',
7+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/43698bb57a93bd8a977fd85b92f00f33ec4ac611_scrapyard-proj-logo.png',
8+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/27cee257bd6155fd84b14cb2feb003cb570d3fc1_lubabaxn-swirl-1.png',
9+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/fb5257c83deeaaf1d5fce9c6c75a297c7f2241b2_lubabaxn-swirl-2.png',
10+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/e81025c39885d2f1fc1334e16d928d515c8031df_lubabaxn-swirl-3.png',
11+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/3e0f17e9a7e8083ffe562c146ce6ffb8c0f2150e_swirl-sticker-submission.png',
12+
'https://cdn.hackclub.com/rescue?url=https://hc-cdn.hel1.your-objectstorage.com/s/v3/c34a3834cf6e419da4cfc2147b2bf370e86c3e95_alb-swirl.png',
1313
];
1414

1515
fetch('/data.yaml')

index.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta
@@ -87,11 +87,14 @@ <h1 id="circle">
8787
</h1>
8888

8989
<h1 id="main-text" style="text-align: center">
90-
Build a website<br />
91-
Get free ice cream!
90+
Build a Website<br />
91+
Get Free Ice Cream!
9292
</h1>
93-
<p>Currently Only Accepting Submissions from Clubs</p>
94-
<p>Apply to start one at <a href="https://apply.hackclub.com">apply.hackclub.com</a>!</p>
93+
<p>Only accepting submissions from clubs.</p>
94+
<p>
95+
Apply to start one at
96+
<a href="https://apply.hackclub.com">apply.hackclub.com</a>!
97+
</p>
9598
</center>
9699
<!--
97100
<img src="images/assets/svg/swirl-1.svg" alt="swirl logo" style="background: none; width: 350px; height: 350px; margin-top: -1000px; margin-bottom: 100px; margin-left: 20px">
@@ -101,9 +104,9 @@ <h1 id="main-text" style="text-align: center">
101104
<button>
102105
<a
103106
target="_blank"
104-
href="https://submit.hackclub.com/swirl"
107+
href="https://forms.hackclub.com/swirl"
105108
style="text-decoration: none; color: #b875ff"
106-
>Get your ice cream</a
109+
>Get your ice cream!</a
107110
>
108111
</button>
109112
<button>

resources.html

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta
@@ -150,16 +150,11 @@ <h2 style="font-size: 30px">
150150
</div>
151151
<div class="item">
152152
<!-- img to add!-->
153-
<div
154-
style="
155-
height: 150px;
156-
display: flex;
157-
align-items: center;
158-
justify-content: center;
159-
"
160-
>
161-
image pending
162-
</div>
153+
<img
154+
src="https://cdn.hackclub.com/019d3e8d-36dc-7488-909b-88ae277f14c1/screenshot_2026-03-30_at_7.42.01___am.png"
155+
alt="Swirl Yessa"
156+
style="background: none; width: 100%"
157+
/>
163158
<a
164159
target="_blank"
165160
href="https://cdn.hackclub.com/019c8ec9-7f8c-7557-b876-ac89f29c994f/swirl_website_template.pdf"
@@ -186,7 +181,7 @@ <h2 style="font-size: 30px">
186181
<div class="main-content">
187182
<br />
188183
<h3>Other Websites:</h3>
189-
<ul>
184+
<ul style="gap: 1rem; display: flex; flex-direction: column">
190185
<li>
191186
<a
192187
target="_blank"

styles.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ h6,
2828
p,
2929
li,
3030
footer {
31-
padding-left: 2.5em;
32-
padding-right: 2.5em;
31+
margin-left: 1.5em;
32+
margin-right: 2.5em;
3333
}
3434

3535
.preahvihear-regular {
@@ -39,7 +39,7 @@ footer {
3939
}
4040

4141
/*
42-
Navbar code based from: dhyans.xyz -(modified)
42+
Navbar code based from: dhyans.dev -(modified)
4343
*/
4444
.navbar {
4545
padding: 0;

0 commit comments

Comments
 (0)