Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .astro/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1768720957419
"lastUpdateCheck": 1769820972528
}
}
2 changes: 1 addition & 1 deletion src/components/RadioButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const RadioButtons = ({buttonIDs, buttonText, inputElementName, stateSetter} : R
return (
<fieldset
id={`${inputElementName}-baseContainer`}
className="flex flex-row gap-x-2 mb-2"
className="flex flex-row gap-x-2 mb-2 flex-wrap"
>
{
buttonProps.map((btn, idx) => (
Expand Down
29 changes: 23 additions & 6 deletions src/data/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ Parsed date strings are in ISO format (YYYY-MM-DD)
*/

// be sure to edit these at the same time. not sure of a great way to couple them with code.
export type ArchiveYear = "25-26";
export const ARCHIVE_YEARS: ArchiveYear[] = [
"25-26"
];
export type ArchiveYear = "25-26";

// be sure to edit these at the same time. not sure of a great way to couple them with code.
export type ArchiveEntryType = "Meetings" | "Bugsmashers" | "HackKU" | "Miscellaneous";
export const ALL_ENTRY_TYPES: ArchiveEntryType[] = [
"Meetings", "Bugsmashers", "HackKU", "Miscellaneous"
];

// Modify as needed.
export type ArchiveTag = "Test" |
Expand All @@ -29,11 +35,6 @@ export type ArchiveTag = "Test" |
"Intro" |
"Web";

export const ALL_ENTRY_TYPES: ArchiveEntryType[] = [
"Meetings", "Bugsmashers", "HackKU", "Miscellaneous"
];
export type ArchiveEntryType = "Meetings" | "Bugsmashers" | "HackKU" | "Miscellaneous";

export type ArchiveItem = {
name: string;
description?: string;
Expand Down Expand Up @@ -355,4 +356,20 @@ export const ALL_ARCHIVE_ITEMS: ArchiveItem[] = [
}
]
},
// Bugsmashers SP26
{
name: 'BugSmashers: C and C++',
semester: 'Spring',
date: new Date('January 29, 2026'),
description: 'BugSmashers host a workshop on C and C++, critical low-level languages.',
tags: ["Workshops"],
entryType: "Bugsmashers",
year: "25-26",
links: [
{
name: "Slides",
url: new URL("https://docs.google.com/presentation/d/1HW7KIK---Vk6yaaHbwwXtd5jwJJwGwZE1ow_6m3OoH4/edit?usp=sharing")
}
]
},
];
2 changes: 1 addition & 1 deletion src/pages/ipc26.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const metadata = {
<div class="flex flex-col justify-center">
<p class="text-2xl">More information is available on the Devpost!</p>
</div>
<Button {...({ text: 'Take me there!', href: 'https://docs.google.com/forms/d/e/1FAIpQLSc5nc9ao4G5IkxVT9XgSKuLj11Vcw1GOUyp21IQ8BzwhOr60Q/viewform', target: '_blank', variant: 'primary'})} />
<Button {...({ text: 'Take me there!', href: 'https://ku-ipc.devpost.com/', target: '_blank', variant: 'primary'})} />
</div>
<div class="flex gap-8">
<div class="flex flex-col justify-center">
Expand Down
Loading