From 72f1accbe47c5a5a8523bd2bb1a0ec5cb30d136a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EB=B3=91=EC=B2=A0?= Date: Fri, 23 Jan 2026 18:13:50 +0900 Subject: [PATCH] =?UTF-8?q?fix(WEB):=20=EB=A1=9C=EA=B7=B8=EC=9D=B8/?= =?UTF-8?q?=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EB=A1=9C=EA=B3=A0=EB=A5=BC=20sam-logo.png=EB=A1=9C?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - LoginPage.tsx: 하드코딩된 "S" 텍스트 → Image 컴포넌트로 변경 - SignupPage.tsx: 하드코딩된 "S" 텍스트 → Image 컴포넌트로 변경 - AuthenticatedLayout과 동일한 /sam-logo.png 사용 Co-Authored-By: Claude Opus 4.5 --- .../project/management/[id]/page.tsx | 17 ----------------- src/components/auth/LoginPage.tsx | 5 +++-- src/components/auth/SignupPage.tsx | 6 +++--- 3 files changed, 6 insertions(+), 22 deletions(-) delete mode 100644 src/app/[locale]/(protected)/construction/project/management/[id]/page.tsx diff --git a/src/app/[locale]/(protected)/construction/project/management/[id]/page.tsx b/src/app/[locale]/(protected)/construction/project/management/[id]/page.tsx deleted file mode 100644 index 17601b37..00000000 --- a/src/app/[locale]/(protected)/construction/project/management/[id]/page.tsx +++ /dev/null @@ -1,17 +0,0 @@ -'use client'; - -import { use } from 'react'; -import ProjectDetailClient from '@/components/business/construction/management/ProjectDetailClient'; - -interface PageProps { - params: Promise<{ - id: string; - locale: string; - }>; -} - -export default function ProjectDetailPage({ params }: PageProps) { - const { id } = use(params); - - return ; -} diff --git a/src/components/auth/LoginPage.tsx b/src/components/auth/LoginPage.tsx index 05b28705..1b7eb1f2 100644 --- a/src/components/auth/LoginPage.tsx +++ b/src/components/auth/LoginPage.tsx @@ -3,6 +3,7 @@ import { useState, useEffect } from "react"; import { useRouter } from "next/navigation"; import { useTranslations } from "next-intl"; +import Image from "next/image"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; @@ -186,8 +187,8 @@ export function LoginPage() { onClick={() => router.push("/")} className="flex items-center space-x-3 hover:opacity-80 transition-opacity" > -
-
S
+
+ SAM

SAM

diff --git a/src/components/auth/SignupPage.tsx b/src/components/auth/SignupPage.tsx index 1131fdc9..de380b28 100644 --- a/src/components/auth/SignupPage.tsx +++ b/src/components/auth/SignupPage.tsx @@ -3,6 +3,7 @@ import { useState, useEffect } from "react"; import { useRouter } from "next/navigation"; import { useTranslations } from "next-intl"; +import Image from "next/image"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; @@ -280,9 +281,8 @@ export function SignupPage() { onClick={() => router.push("/")} className="flex items-center space-x-3 hover:opacity-80 transition-opacity" > -
-
S
-
+
+ SAM

SAM