Skip to content

Commit e74c3e3

Browse files
authored
prepare site for '25
1 parent 2b9bbda commit e74c3e3

File tree

8 files changed

+34
-36
lines changed

8 files changed

+34
-36
lines changed

src/components/footer.astro

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ const pages = [
2323
{
2424
title: "Archive",
2525
link: "/archive",
26-
},
27-
{
28-
title: "March Conference",
29-
link: "/events/march",
30-
},
31-
{
32-
title: "June Conference",
33-
link: "/events/june",
34-
},
35-
{
36-
title: "December Conference",
37-
link: "/events/december",
3826
}
27+
// {
28+
// title: "March Conference",
29+
// link: "/events/march",
30+
// },
31+
// {
32+
// title: "June Conference",
33+
// link: "/events/june",
34+
// },
35+
// {
36+
// title: "December Conference",
37+
// link: "/events/december",
38+
// }
3939
];
4040
---
4141

src/components/nav.tsx

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,9 @@ export default function Nav() {
2929

3030
const events = [
3131
{
32-
title: "December Conference",
33-
href: "/events/december",
34-
desc: "The last conference of the year, with the theme of Web Dev."
35-
},
36-
{
37-
title: "June Conference",
38-
href: "/events/june",
39-
desc: "Our flagship conference, featuring workshops, talks, and more."
40-
},
41-
{
42-
title: "March Conference",
43-
href: "/events/march",
44-
desc: "The March Conference aims to spark an interest in Python and Data Science."
32+
title: "No events as of now",
33+
href: "https://discord.gg/VSHyrbsJFs",
34+
desc: "Join our Discord to stay tuned"
4535
},
4636
{
4737
title: "Looking for older events?",
@@ -78,18 +68,18 @@ export default function Nav() {
7868
</Popover>
7969
</div>
8070
</div>
81-
<a className="h-16 justify-end flex sticky top-0 z-20" href="/events/december">
71+
{/* <a className="h-16 justify-end flex sticky top-0 z-20" href="/events/december">
8272
<div className="pl-5 pr-2.5 rounded-full mt-4 bg-slate-900/50 backdrop-filter backdrop-blur-lg ring-1 ring-slate-800 flex items-center gap-x-4">
8373
<p>December Conference</p>
8474
<div className="bg-orange-500 hover:bg-orange-600 rounded-full p-1 px-1.5 transition flex gap-x-2 items-center font-semibold"><ArrowRightIcon className="w-5 h-5" /></div>
8575
</div>
86-
</a>
76+
</a> */}
8777
</div>
8878
<div className="sm:hidden h-16 justify-end flex sticky top-0 z-20">
89-
<a href="/events/december" className="px-6 py-2 rounded-full mt-4 mr-4 bg-slate-900/50 backdrop-filter backdrop-blur-lg ring-1 ring-slate-800 flex items-center gap-x-4 text-sm">
79+
{/* <a href="/events/december" className="px-6 py-2 rounded-full mt-4 mr-4 bg-slate-900/50 backdrop-filter backdrop-blur-lg ring-1 ring-slate-800 flex items-center gap-x-4 text-sm">
9080
<p>Dec Conference</p>
9181
<div className="bg-orange-500 hover:bg-orange-600 rounded-full p-1 px-1.5 transition flex gap-x-2 items-center font-semibold"><ArrowRightIcon className="w-5 h-5" /></div>
92-
</a>
82+
</a> */}
9383
<div className="px-6 py-2 rounded-full mt-4 mr-4 bg-slate-900/50 backdrop-filter backdrop-blur-lg ring-1 ring-slate-800 flex items-center gap-x-4">
9484
<a href="/">
9585
<img src='/favicon.svg' alt="BuildingBloCS logo" className="w-5 h-5" />

src/content/events/december.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: December Conference
2-
status: closed
2+
status: over
33
directions: /events/december/directions
44
luma: evt-kz4gB77dKlYBNZW
55
details:
File renamed without changes.

src/img/archive/2024.webp

3.17 MB
Loading

src/layout.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const { title, showTitle, desc } = Astro.props;
2525
<Nav client:load />
2626
{showTitle && <h1 class="text-center mt-10 mb-5 mx-5">{title}</h1>}
2727
<slot />
28-
{title != "December Conference" && <div class="mx-auto max-w-7xl py-12 sm:px-6 lg:px-8">
28+
{/* title != "December Conference" && <div class="mx-auto max-w-7xl py-12 sm:px-6 lg:px-8">
2929
<div class="relative isolate overflow-hidden bg-gray-900 dark:bg-slate-900 px-6 pt-16 sm:pt-32 shadow-2xl sm:rounded-3xl sm:px-16 md:pt-24 lg:flex lg:gap-x-20 xl:gap-x-20 lg:px-24 lg:pt-0">
3030
<svg viewBox="0 0 1024 1024"
3131
class="absolute left-1/2 top-1/2 -z-10 h-[64rem] w-[64rem] -translate-y-1/2 [mask-image:radial-gradient(closest-side,white,transparent)] sm:left-full sm:-ml-80 lg:left-1/2 lg:ml-0 lg:-translate-x-1/2 lg:translate-y-0"
@@ -57,7 +57,7 @@ const { title, showTitle, desc } = Astro.props;
5757
</div>
5858
</div>
5959
</div>
60-
</div> }
60+
</div> */}
6161
<Footer />
6262
</body>
6363
</html>

src/pages/archive.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
import Layout from "../layout.astro";
33
44
import { Image } from "astro:assets";
5-
import twentythree from "../img/archive/1.webp";
5+
import twentyfour from "../img/archive/2024.webp";
6+
import twentythree from "../img/archive/2023.webp";
67
import twentytwo from "../img/archive/2022.jpg";
78
import twentyone from "../img/archive/2021.jpg";
89
import twentytwenty from "../img/archive/2020.png";
@@ -11,6 +12,13 @@ import twentyeighteen from "../img/archive/2018.jpg";
1112
import twentyseventeen from "../img/archive/2017.jpg";
1213
1314
const events = [
15+
{
16+
year: 2024,
17+
desc: "A year filled with Python, AI, and Web development, with more than 500 participants from 3 different conferences in total",
18+
link: "https://old.buildingblocs.sg/2024/",
19+
img: twentyfour,
20+
alt: 'Students in a Seminar Room at the 2024 BuildingBloCS June Conference'
21+
},
1422
{
1523
year: 2023,
1624
desc: "Jam-packed year with 3 Conferences, FOSSASIA, and a CTF!",

src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,19 +112,19 @@ const timeline: Timeline[] = [
112112
desc: "We expanded to take organisers from NUSH, TJC, SP and many more institutes around Singapore, hosting events yearly.",
113113
},
114114
{
115-
date: "10th - 15th March",
115+
date: "10th - 15th March 2024",
116116
title: "March Conference",
117117
desc: "The March Conference aims to spark an interest in Python and Data Science, with five workshops and a hackathon.",
118118
link: "/events/march"
119119
},
120120
{
121-
date: "10th - 14th June",
121+
date: "10th - 14th June 2024",
122122
title: "June Conference",
123123
desc: "Our annual flagship Conference held in June has successfully concluded, with engaging workshops, talks and much more!",
124124
link: "/events/june"
125125
},
126126
{
127-
date: "16th - 20th December",
127+
date: "16th - 20th December 2024",
128128
title: "December Conference",
129129
desc: "The last conference of the year, December Conference, contains six different workshops teaching about web development",
130130
link: "/events/december"

0 commit comments

Comments
 (0)