From a13b7cc7cc3c0efda9578f80c9fe31310d1dc314 Mon Sep 17 00:00:00 2001 From: jmj Date: Tue, 30 Jun 2026 10:52:16 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=EB=8C=80=EC=8B=9C=EB=B3=B4=EB=93=9C?= =?UTF-8?q?=20=EA=B0=80=EB=8F=85=EC=84=B1=C2=B7=EC=B0=A8=ED=8A=B8=C2=B7?= =?UTF-8?q?=EC=9E=90=EC=86=8C=EC=84=9C=20=EC=B9=B4=EB=93=9C=20+=20?= =?UTF-8?q?=EB=B8=8C=EB=9E=9C=EB=93=9C=20=EC=B9=B4=ED=94=BC=20=EC=A0=95?= =?UTF-8?q?=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 실전 화면 피드백 반영(블루 테마 후속). - 대시보드 히어로 제목이 네이비 카드 위에서 어둡게 보이던 문제 수정: 전역 h1~h3 색 규칙(fg-strong)이 상속 흰색을 덮어써 → 제목에 text-white 명시. - 점수 추이 차트가 눌려 보이던 문제: viewBox 320x150→480x220, 높이 h-36→h-56 로 키워 세로 여백 확보. - 워크스페이스 대시보드에 '자소서' 퀵링크 카드 추가(4칸 그리드, /workspace/cover-letters). - 브랜드 카피에서 종합설계/팀 느낌 제거 + IT 한정 표현 완화: - home-quote: 팀원 이름·"Team StackUp · CNU"·"2026 · Phase 1" 배지 제거, "올인원 IT 면접" → "직군을 가리지 않는 올인원 모의 면접", 이력서·자소서·레포 언급. - site-footer/login: "© 2026 StackUp · CNU 종합설계" → "© 2026 StackUp". - footer 설명·index.html title 에서 IT 한정 표현 완화, FAQ 내부 용어 'Phase 1' 정리. 빌드 통과. lint 기존 2파일 외 신규 에러 없음. Co-Authored-By: Claude Opus 4.8 --- frontend/index.html | 2 +- .../src/features/history/ui/ScoreTrend.tsx | 8 +++--- frontend/src/pages/Login/ui/LoginPage.tsx | 2 +- frontend/src/pages/Workspace/ui/HomeView.tsx | 28 +++++++++++++++++-- frontend/src/widgets/home-faq/ui/HomeFaq.tsx | 2 +- .../src/widgets/home-quote/ui/HomeQuote.tsx | 21 ++++---------- .../src/widgets/site-footer/ui/SiteFooter.tsx | 6 ++-- 7 files changed, 41 insertions(+), 28 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 0c5b33d0..02a6296f 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -17,7 +17,7 @@ rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Geist+Mono:wght@400;500;600&display=swap" /> - StackUp — IT Interview Solution + StackUp — AI Interview Solution
diff --git a/frontend/src/features/history/ui/ScoreTrend.tsx b/frontend/src/features/history/ui/ScoreTrend.tsx index eefaf2be..8ffcc110 100644 --- a/frontend/src/features/history/ui/ScoreTrend.tsx +++ b/frontend/src/features/history/ui/ScoreTrend.tsx @@ -1,8 +1,8 @@ import type { UserStats } from '../api/historyApi' -const W = 320 -const H = 150 -const PAD = { l: 26, r: 10, t: 14, b: 10 } +const W = 480 +const H = 220 +const PAD = { l: 30, r: 14, t: 18, b: 16 } const IW = W - PAD.l - PAD.r const IH = H - PAD.t - PAD.b const GRID = [0, 50, 100] @@ -66,7 +66,7 @@ export function ScoreTrend({ stats }: { stats: UserStats }) { 지표별 점수 추이 (최근 {n}회)
- © 2026 StackUp · CNU 종합설계 + © 2026 StackUp ← Back to home diff --git a/frontend/src/pages/Workspace/ui/HomeView.tsx b/frontend/src/pages/Workspace/ui/HomeView.tsx index 05f18b23..0e149e5b 100644 --- a/frontend/src/pages/Workspace/ui/HomeView.tsx +++ b/frontend/src/pages/Workspace/ui/HomeView.tsx @@ -17,7 +17,7 @@ export function HomeView() {

맞춤 모의 면접

-

+

이력서·레포 기반 맞춤 면접을 시작하세요

@@ -50,13 +50,19 @@ export function HomeView() {

-
+
} /> + } + /> + + + + ) +} + function RepoIcon() { return (

- Stack Up은 올인원 IT 면접 솔루션입니다. 본인 코드를 가장 잘 아는 - 면접관 — GitHub 레포에서 출발해, 답변의 깊이까지 따라 들어갑니다. + Stack Up은 직군을 가리지 않는 올인원 모의 면접 솔루션입니다. 이력서·자소서· + GitHub 레포에서 출발해, 답변의 깊이까지 따라 들어갑니다.

-
-
-
- 박상우 · 신재호 · 정준모 · 조서현 -
-
- Team StackUp · CNU -
-
-
- - - 2026 · Phase 1 - +
+
+ 전 직군 · 맞춤 질문 · 음성·비언어 분석까지
diff --git a/frontend/src/widgets/site-footer/ui/SiteFooter.tsx b/frontend/src/widgets/site-footer/ui/SiteFooter.tsx index 39aa1507..a280e4fa 100644 --- a/frontend/src/widgets/site-footer/ui/SiteFooter.tsx +++ b/frontend/src/widgets/site-footer/ui/SiteFooter.tsx @@ -71,8 +71,8 @@ export function SiteFooter() { Stack Up

- IT 직군 멀티모달 AI 면접 시뮬레이터. GitHub 레포와 이력서를 분석해 - 개인 맞춤 면접과 음성·비언어적 피드백을 제공합니다. + 직군을 가리지 않는 멀티모달 AI 면접 시뮬레이터. 이력서·자소서·GitHub + 레포를 분석해 개인 맞춤 면접과 음성·비언어적 피드백을 제공합니다.

@@ -115,7 +115,7 @@ export function SiteFooter() {
- © 2026 StackUp · CNU 종합설계. All rights reserved. + © 2026 StackUp. All rights reserved.