diff --git a/app/topics/ssdc-appointment-slots/page.tsx b/app/topics/ssdc-appointment-slots/page.tsx index 3e210f2..3a827b6 100644 --- a/app/topics/ssdc-appointment-slots/page.tsx +++ b/app/topics/ssdc-appointment-slots/page.tsx @@ -60,10 +60,13 @@ export default function SsdcAppointmentSlots() { SSDC - , you may need to book an appointment depending on the course you are - interested or the service you are looking for. The appointment slots for - these services are sometimes fully booked and you will need to - constantly check the{" "} + , you may need to{" "} + + book an appointment + {" "} + depending on the course you are interested or the service you are + looking for. The appointment slots for these services are sometimes + fully booked and you will need to constantly check the{" "} SSDC {" "} diff --git a/app/topics/ssdc-appointment-slots/ssdc-slots-table.tsx b/app/topics/ssdc-appointment-slots/ssdc-slots-table.tsx index 4701ca4..30e5725 100644 --- a/app/topics/ssdc-appointment-slots/ssdc-slots-table.tsx +++ b/app/topics/ssdc-appointment-slots/ssdc-slots-table.tsx @@ -24,32 +24,27 @@ export function SsdcSlotsTable() { service: SsdcService.ENROLMENT_WEEKEND, title: "Class 3 / 3A School Enrolment (weekend)", lastAvailableDate: ssdcSlotsDatesMap[SsdcService.ENROLMENT_WEEKEND], - calendarLink: "https://ssdcl.com.sg/e-appointment/", }, { service: SsdcService.PRIVATE_LEARNERS, title: "Private Learners", lastAvailableDate: ssdcSlotsDatesMap[SsdcService.PRIVATE_LEARNERS], - calendarLink: "https://ssdcl.com.sg/e-appointment/", }, { service: SsdcService.PRACTICAL_LESSON_BOOKING, title: "Class 3 / 3A Practical Lesson Booking", lastAvailableDate: ssdcSlotsDatesMap[SsdcService.PRACTICAL_LESSON_BOOKING], - calendarLink: "https://ssdcl.com.sg/e-appointment/", }, { service: SsdcService.OTHER_COURSES_ENROLMENT, title: "Other Courses Enrolment (weekend)", lastAvailableDate: ssdcSlotsDatesMap[SsdcService.OTHER_COURSES_ENROLMENT], - calendarLink: "https://ssdcl.com.sg/e-appointment/", }, { service: SsdcService.FOREIGN_LICENCE_WEEKEND, title: "Foreign Licence Package (weekend)", lastAvailableDate: ssdcSlotsDatesMap[SsdcService.FOREIGN_LICENCE_WEEKEND], - calendarLink: "https://ssdcl.com.sg/e-appointment/", }, ]; @@ -76,11 +71,7 @@ export function SsdcSlotsTable() { {ssdcSlotsInfoItems.map((slotsInfoItem) => ( - - - {slotsInfoItem.title} - - + {slotsInfoItem.title} {slotsInfoItem.lastAvailableDate} diff --git a/lib/types.ts b/lib/types.ts index 20abff2..dd7f410 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -133,7 +133,6 @@ export type SsdcSlotsInfo = { service: SsdcService; title: string; lastAvailableDate: string; - calendarLink: string; }; export type SsdcSlotsInfoItems = Array;