diff --git a/src/app/photographer/[id]/page.tsx b/src/app/photographer/[id]/page.tsx deleted file mode 100644 index 186aaa2..0000000 --- a/src/app/photographer/[id]/page.tsx +++ /dev/null @@ -1,58 +0,0 @@ -import { photographers_mu } from '@/data/database'; -import Image from 'next/image'; -const PhotographerDetailsPage = ({ params }: { params: { id: string } }) => { - // In a real application, you would fetch the photographer's details based on the id - const photographer = photographers_mu[parseInt(params.id)]; - - return ( -
-
-
- {photographer.name} -
-

{photographer.name}

-

{photographer.instagramId}

-
-
-
- {photographer.workImages?.map((image, index) => ( - {`Work - ))} -
-

제공 서비스

- - - 인스타그램으로 연락하기 - -
-
- ); -}; - -export default PhotographerDetailsPage;