style: added new screens and designs

This commit is contained in:
Cron1cle
2025-10-06 01:16:10 +02:00
parent badf355a2d
commit 8fb418c6f3
12 changed files with 718 additions and 141 deletions

View File

@@ -9,6 +9,7 @@ export type RawShow = {
streamingServices: string;
startDate?: string;
endDate?: string | null;
running: boolean;
};
export type Show = {
@@ -22,6 +23,7 @@ export type Show = {
concept: string;
startDate?: string;
endDate?: string | null;
running: boolean;
};
const API_URL = "http://45.157.177.99:8080/shows";
@@ -46,8 +48,7 @@ export async function getShows(): Promise<Show[]> {
bannerUri: s.bannerUrl ?? "",
streamingService: s.streamingServices,
concept: s.concept,
startDate: s.startDate,
endDate: s.endDate ?? null,
running: s.running,
}));
} catch (error) {
console.error("Fetch error:", error);