- KT-NEGOWIZ /chat 을 현재 아키텍처(Vite·React Router·feature 구조)로 이식 - 사이드 ItemSection(+이미지 확대), 헤더 잔여시간, 채팅(메시지/템플릿/입력), 메뉴 섹션 - 메시지 템플릿: 협상 성공률·협상요약·투찰요약·재협상/재견적 폼 - zustand 스토어 + mock 데이터(정적 쇼케이스, 제출 시 로컬 append) - Next.js·KT 의존 제거(next/image·navigation, 로고·서비스명·연락처, 팝업 보류) - ChatPage 배선: ChatContainer / ItemSection / RemainingTime + auth SidebarFooter 재사용 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
19 lines
578 B
TypeScript
19 lines
578 B
TypeScript
import { ChevronRight } from 'lucide-react'
|
|
import { interactive, cn } from '@/lib'
|
|
|
|
// 유의사항 및 이용방법 (TODO: 이용가이드 팝업 연동)
|
|
export function Guide() {
|
|
return (
|
|
<button
|
|
type="button"
|
|
className={cn(
|
|
'flex w-full bg-white rounded-[28px] py-[20px] pl-[24px] pr-[16px] justify-between items-center text-left',
|
|
interactive,
|
|
)}
|
|
>
|
|
<span className="menu-title text-neutral-80 break-keep">유의사항 및 이용방법</span>
|
|
<ChevronRight size={20} className="text-neutral-70" />
|
|
</button>
|
|
)
|
|
}
|