Skip to content

Commit 9b8cd2b

Browse files
committed
changed categories in events
1 parent aa87443 commit 9b8cd2b

4 files changed

Lines changed: 5 additions & 8 deletions

File tree

src/app/events/page.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ function EventsContent() {
4040
{ value: "hackathon", label: t.eventsPage?.filters?.categoryHackathon || "Hackathon" },
4141
{ value: "workshop", label: t.eventsPage?.filters?.categoryWorkshop || "Workshop" },
4242
{ value: "lecture", label: t.eventsPage?.filters?.categoryLecture || "Lecture" },
43-
{ value: "summer school", label: t.eventsPage?.filters?.categorySummerSchool || "Summer School" },
44-
{ value: "winter school", label: t.eventsPage?.filters?.categoryWinterSchool || "Winter School" },
43+
{ value: "school", label: t.eventsPage?.filters?.categorySchool || "School" },
4544
] as const, [t]);
4645

4746
const statusOptions = useMemo(

src/data/events.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export interface Event {
2020
id: string;
2121
title: string;
2222
date: string;
23-
category: "Workshop" | "Hackathon" | "Lecture" | "Summer school" | "Winter school";
23+
category: "Workshop" | "Hackathon" | "Lecture" | "School";
2424
field: QuantumField;
2525
level: QuantumLevel;
2626
location: string;
@@ -110,7 +110,7 @@ export const events: Event[] = [
110110
field: "Quantum Machine Learning",
111111
level: "Intermediate",
112112
location: "Online",
113-
status: "Upcoming",
113+
status: "Closed",
114114
description: "Exploring the intersection of classical and quantum machine learning techniques for the future of AI.",
115115
fullDetails: "Classical Machine Learning Review and Quantum Machine Learning This track bridges classical and quantum approaches to machine learning. It begins with a focused review of classical machine learning concepts and progresses to quantum machine learning models and hybrid techniques. Topics include Quantum Support Vector Machines (QSVM), Quantum Neural Networks (QNN), and hybrid classical quantum models.",
116116
speakers: [

src/messages/ar.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@
106106
"categoryHackathon": "هاكاثون",
107107
"categoryWorkshop": "ورشة عمل",
108108
"categoryLecture": "محاضرة",
109-
"categorySummerSchool": "مدرسة صيفية",
110-
"categoryWinterSchool": "مدرسة شتوية",
109+
"categorySchool": "مدرسة",
111110
"statusAll": "الكل (الحالة)",
112111
"statusUpcoming": "قريبًا",
113112
"statusOpen": "متاح",

src/messages/en.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@
105105
"categoryHackathon": "Hackathon",
106106
"categoryWorkshop": "Workshop",
107107
"categoryLecture": "Lecture",
108-
"categorySummerSchool": "Summer School",
109-
"categoryWinterSchool": "Winter School",
108+
"categorySchool": "School",
110109
"statusAll": "All (Status)",
111110
"statusUpcoming": "Upcoming",
112111
"statusOpen": "Open",

0 commit comments

Comments
 (0)