From d93128194667be32f36f6417e3faa01746762f40 Mon Sep 17 00:00:00 2001 From: AWESOMEDEV Date: Thu, 23 Jul 2026 13:05:07 +0900 Subject: [PATCH] =?UTF-8?q?fix(nav):=20=ED=97=A4=EB=8D=94=20=EB=A1=9C?= =?UTF-8?q?=EA=B3=A0=20=ED=81=B4=EB=A6=AD=20=EC=8B=9C=20=EB=A9=94=EC=9D=B8?= =?UTF-8?q?(=EB=8C=80=EC=8B=9C=EB=B3=B4=EB=93=9C)=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.jsx | 7 ++++--- frontend/src/styles/global.css | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index bb59d3d..f64f554 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -4,7 +4,7 @@ // 학습 포인트: 코스 라우트는 여기 일일이 쓰지 않는다 — courseCatalog.jsx의 데이터를 .map으로 돌려 // 자동 생성한다. 코스가 수백 개로 늘어도 이 파일은 그대로다. import { Suspense, lazy } from 'react'; -import { Routes, Route, NavLink, Navigate, Outlet, useNavigate, useLocation } from 'react-router-dom'; +import { Routes, Route, Link, NavLink, Navigate, Outlet, useNavigate, useLocation } from 'react-router-dom'; import { CircleUser, KeyRound } from 'lucide-react'; import { useAuth } from './AuthContext'; import { ALL_COURSES } from './courseCatalog'; @@ -103,9 +103,10 @@ function Layout() { <>
-
+ {/* 로고 클릭 → 대시보드(메인). 관례상 로고는 항상 홈으로 가는 통로다. */} + AWESOMEDEV 학습 플랫폼 -
+