diff --git a/src/app/components/Icon.tsx b/src/app/components/Icon.tsx index 5bc6487..e7d4658 100644 --- a/src/app/components/Icon.tsx +++ b/src/app/components/Icon.tsx @@ -1,4 +1,5 @@ import { iconClassnameProps } from '@/types/component.ts'; +import Image from 'next/image'; export function GpsIcon({ className }: iconClassnameProps) { return ( @@ -71,3 +72,14 @@ export function CameraIcon({ className }: iconClassnameProps) { ); } + +export function Marker({ className }: iconClassnameProps) { +
+ +
; +} diff --git a/src/app/home/Body.tsx b/src/app/home/Body.tsx index d3779bb..5fa7030 100644 --- a/src/app/home/Body.tsx +++ b/src/app/home/Body.tsx @@ -213,7 +213,7 @@ function Distance() { position={{ lat: marker.lat, lng: marker.lng }} onClick={() => handleMain(marker)} image={{ - src: 'https://i.ibb.co/Cnwf3x8/image.png', + src: 'https://i.ibb.co/sCQvt3z/Group-2608599.png', size: { width: 64, height: 70 }, options: { offset: { x: 27, y: 69 } }, }}