From 59224a519729196d7beea8acf986ef833c6f05ae Mon Sep 17 00:00:00 2001 From: 5nxtnxtnxt <5nxtnxtnxt@gmail.com> Date: Mon, 13 May 2024 12:03:44 +0900 Subject: [PATCH 1/7] fix: build error fixed --- app/signIn/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/signIn/page.tsx b/app/signIn/page.tsx index 6d86847..3336951 100644 --- a/app/signIn/page.tsx +++ b/app/signIn/page.tsx @@ -1,6 +1,9 @@ import Image from 'next/image'; import Link from 'next/link'; -import { Button, Checkbox, Input, Label } from '@shadcn'; +import { Button } from '@components/ui/button'; +import { Checkbox } from '@components/ui/checkbox'; +import { Input } from '@components/ui/input'; +import { Label } from '@components/ui/label'; export default function LoginPage() { return ( From da26d7144523f15a7d56883ebe9a18460d65d56d Mon Sep 17 00:00:00 2001 From: 5nxtnxtnxt <5nxtnxtnxt@gmail.com> Date: Mon, 13 May 2024 14:50:11 +0900 Subject: [PATCH 2/7] css: disabled hover on mobile --- tailwind.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tailwind.config.ts b/tailwind.config.ts index 0d6aab5..a8f8f47 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,6 +1,9 @@ import type { Config } from 'tailwindcss'; const config = { + future: { + hoverOnlyWhenSupported: true, + }, darkMode: ['class'], content: ['./app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'], prefix: '', From d7342577aac86a5dd7c1b77f79573192078207f5 Mon Sep 17 00:00:00 2001 From: 5nxtnxtnxt <5nxtnxtnxt@gmail.com> Date: Fri, 17 May 2024 11:01:14 +0900 Subject: [PATCH 3/7] =?UTF-8?q?feat:=20kakaoMap=20DrawingTools=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 직접 구현방식에서 api제공 drawingtools 사용으로 변경 --- app/layout.tsx | 2 +- app/map/page.tsx | 2 - components/map.tsx | 233 ++++++++++----------------------------------- 3 files changed, 52 insertions(+), 185 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index aca996d..3cabc39 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -22,7 +22,7 @@ export default function RootLayout({