diff --git a/public/events/bear-hug-thumb.jpg b/public/products/bear-hug-thumb.jpg
similarity index 100%
rename from public/events/bear-hug-thumb.jpg
rename to public/products/bear-hug-thumb.jpg
diff --git a/public/events/bear-hug.jpg b/public/products/bear-hug.jpg
similarity index 100%
rename from public/events/bear-hug.jpg
rename to public/products/bear-hug.jpg
diff --git a/public/events/bear-hug.webp b/public/products/bear-hug.webp
similarity index 100%
rename from public/events/bear-hug.webp
rename to public/products/bear-hug.webp
diff --git a/public/events/six-fingers-thumb.jpg b/public/products/six-fingers-thumb.jpg
similarity index 100%
rename from public/events/six-fingers-thumb.jpg
rename to public/products/six-fingers-thumb.jpg
diff --git a/public/events/six-fingers.jpg b/public/products/six-fingers.jpg
similarity index 100%
rename from public/events/six-fingers.jpg
rename to public/products/six-fingers.jpg
diff --git a/public/events/six-fingers.webp b/public/products/six-fingers.webp
similarity index 100%
rename from public/events/six-fingers.webp
rename to public/products/six-fingers.webp
diff --git a/public/events/viking-people-thumb.jpg b/public/products/viking-people-thumb.jpg
similarity index 100%
rename from public/events/viking-people-thumb.jpg
rename to public/products/viking-people-thumb.jpg
diff --git a/public/events/viking-people.jpg b/public/products/viking-people.jpg
similarity index 100%
rename from public/events/viking-people.jpg
rename to public/products/viking-people.jpg
diff --git a/public/events/viking-people.webp b/public/products/viking-people.webp
similarity index 100%
rename from public/events/viking-people.webp
rename to public/products/viking-people.webp
diff --git a/public/events/we-all-look-the-same-thumb.jpg b/public/products/we-all-look-the-same-thumb.jpg
similarity index 100%
rename from public/events/we-all-look-the-same-thumb.jpg
rename to public/products/we-all-look-the-same-thumb.jpg
diff --git a/public/events/we-all-look-the-same.jpg b/public/products/we-all-look-the-same.jpg
similarity index 100%
rename from public/events/we-all-look-the-same.jpg
rename to public/products/we-all-look-the-same.jpg
diff --git a/public/events/we-all-look-the-same.webp b/public/products/we-all-look-the-same.webp
similarity index 100%
rename from public/events/we-all-look-the-same.webp
rename to public/products/we-all-look-the-same.webp
diff --git a/src/app/(app)/cancellation/page.tsx b/src/app/(app)/cancellation/page.tsx
index 083cc3e..6b153f0 100644
--- a/src/app/(app)/cancellation/page.tsx
+++ b/src/app/(app)/cancellation/page.tsx
@@ -80,11 +80,11 @@ export default async function CancellationPage() {
{order.customer.name}
- {order.event.productType}
+ {order.product.productType}
-
- {order.event.name}
+
+ {order.product.name}
{order.amount.krw}
diff --git a/src/app/(app)/events/[id]/page.tsx b/src/app/(app)/events/[id]/page.tsx
deleted file mode 100644
index 07bd0ac..0000000
--- a/src/app/(app)/events/[id]/page.tsx
+++ /dev/null
@@ -1,90 +0,0 @@
-import { Stat } from '@/app/stat'
-import { Badge } from '@/components/badge'
-import { Button } from '@/components/button'
-import { Heading, Subheading } from '@/components/heading'
-import { Link } from '@/components/link'
-import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/table'
-import { getEvent, getEventOrders } from '@/data'
-import { ChevronLeftIcon } from '@heroicons/react/16/solid'
-import type { Metadata } from 'next'
-import { notFound } from 'next/navigation'
-
-export async function generateMetadata({ params }: { params: Promise<{ id: string }> }): Promise {
- let { id } = await params
- let event = await getEvent(id)
-
- return {
- title: event?.name,
- }
-}
-
-export default async function Event({ params }: { params: Promise<{ id: string }> }) {
- let { id } = await params
- let event = await getEvent(id)
- let orders = await getEventOrders(id)
-
- if (!event) {
- notFound()
- }
-
- return (
- <>
-
-
-
- Events
-
-
-
-
-
-
-
-
-
- {event.name}
- {event.status}
-
-
- {event.date} at {event.time} · {event.location}
-