diff --git a/app/(main)/events/[id]/page.tsx b/app/(main)/events/[id]/page.tsx index a38239a..670c7f9 100644 --- a/app/(main)/events/[id]/page.tsx +++ b/app/(main)/events/[id]/page.tsx @@ -10,6 +10,7 @@ import { format } from "date-fns"; import Link from "next/link"; import Image from "next/image"; import { EventRegistrationModal } from "@/components/EventRegistrationModal"; +import { getEventPriceDisplay } from "@/lib/utils/event-priceUtils"; const EventDetailsPage = ({ params }: { params: { id: string } }) => { const { id } = params; @@ -52,9 +53,12 @@ const EventDetailsPage = ({ params }: { params: { id: string } }) => {
-

Event Not Found

+

+ Event Not Found +

- The event you're looking for doesn't exist or has been removed. + The event you're looking for doesn't exist or has been + removed.

{/* Event Description */}
-

Event Description

+

+ Event Description +

{descriptionPreview}
@@ -207,7 +208,10 @@ const EventDetailsPage = ({ params }: { params: { id: string } }) => {