Skip to content

Commit 9a5b26b

Browse files
authored
Merge pull request #89 from abakus-ntnu/revy_2026_droppinfo
2 parents c382975 + ea61c1f commit 9a5b26b

File tree

6 files changed

+25
-24
lines changed

6 files changed

+25
-24
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Må du oppdatere nettsidens innhold? Her er en sjekkliste!
1313
### Ny revy!
1414

1515
- [ ] Sjekk at [fjorårets revyslutt](#Revyslutt) har blitt utført.
16-
- [ ] `src/lib/constants.ts`
16+
- [ ] `src/lib/shows.ts`
1717
- [ ] Oppdater datoene for forestillingene (`SHOWS`).
1818
- [ ] Oppdater periodedatoene. Set datoen som første øyeblikk av den nye perioden.
1919
- [ ] `src/content/ledere`

src/components/Branding/ShowLogo.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
import { Image } from "astro:assets";
33
4-
import ShowLogoLight from "@/images/revy_logoer/objektivt_sett_light_logo.webp";
5-
import ShowLogoDark from "@/images/revy_logoer/objektivt_sett_dark_logo.webp";
4+
import ShowLogoLight from "@/images/revy_logoer/skal_skal_ikke.webp";
5+
import ShowLogoDark from "@/images/revy_logoer/skal_skal_ikke.webp";
66
77
const { class: className } = Astro.props;
88
---

src/components/Show/ShowsCard.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ export default function ShowsCard({}: Readonly<Props>) {
108108
</InfoField>
109109
</div>
110110
<div className="grid grid-cols-1 gap-3 p-3 md:grid-cols-2">
111-
<Button href={show.tickets.live}>
111+
<Button
112+
href={show.tickets.live || ""}
113+
disabled={show.tickets.live === undefined}
114+
>
112115
<Ticket />
113116
Kjøp billetter
114117
</Button>
2.39 MB
Loading
431 KB
Loading

src/lib/shows.ts

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,48 @@ export type Show = {
33
name: string;
44
when: Date;
55
where: { name: string; mapLink: string };
6-
tickets: { live: string; stream?: string };
6+
tickets: { live?: string; stream?: string };
77
};
88
export const SHOWS: Show[] = [
99
{
1010
name: "Premiere",
11-
when: new Date("2025-03-13T19:00:00+0100"),
11+
when: new Date("2026-02-12T19:00:00+0100"),
1212
where: {
13-
name: "Byscenen i Trondheim",
14-
mapLink: "https://maps.app.goo.gl/n7bMGGkzLCdF1oUc9",
13+
name: "Verkstedshallen",
14+
mapLink: "https://maps.app.goo.gl/b8GwxaeLmXmZwPm66",
1515
},
1616
tickets: {
17-
live: "https://www.byscenen.no/event/abakusrevyen-2025-objektivt-sett-1",
18-
stream: "https://vier.live/act/abakusrevyen-2025---premiere",
17+
live: undefined,
18+
stream: undefined,
1919
},
2020
},
2121
{
2222
name: "Andre forestilling",
23-
when: new Date("2025-03-14T17:00:00+0100"),
23+
when: new Date("2026-02-13T17:00:00+0100"),
2424
where: {
25-
name: "Byscenen i Trondheim",
26-
mapLink: "https://maps.app.goo.gl/n7bMGGkzLCdF1oUc9",
25+
name: "Verkstedshallen",
26+
mapLink: "https://maps.app.goo.gl/b8GwxaeLmXmZwPm66",
2727
},
2828
tickets: {
29-
live: "https://www.byscenen.no/event/abakusrevyen-2025-objektivt-sett-2",
29+
live: undefined,
3030
stream: undefined,
3131
},
3232
},
3333
{
3434
name: "Siste forestilling",
35-
when: new Date("2025-03-14T20:30:00+0100"),
35+
when: new Date("2026-02-13T20:00:00+0100"),
3636
where: {
37-
name: "Byscenen i Trondheim",
38-
mapLink: "https://maps.app.goo.gl/n7bMGGkzLCdF1oUc9",
37+
name: "Verkstedshallen",
38+
mapLink: "https://maps.app.goo.gl/b8GwxaeLmXmZwPm66",
3939
},
4040
tickets: {
41-
live: "https://www.byscenen.no/event/abakusrevyen-2025-objektivt-sett-3",
42-
stream: "https://vier.live/act/abakusrevyen-2025---siste-forestilling",
41+
live: undefined,
42+
stream: undefined,
4343
},
4444
},
4545
];
4646

4747
// SLIPP
48-
export const SHOW_REVEAL = new Date("2025-02-07T22:00:00+0100");
49-
export const TICKET_RELEASE: Date | "TBA" = new Date(
50-
"2025-02-19T16:00:00+0100",
51-
);
52-
export const TICKET_LINK: string | undefined = "https://byscn.no/abakus_25";
48+
export const SHOW_REVEAL = new Date("2026-01-09T15:18:00+0100");
49+
export const TICKET_RELEASE: Date | "TBA" = "TBA";
50+
export const TICKET_LINK: string | undefined = undefined;

0 commit comments

Comments
 (0)