refactor: '스케줄' 용어를 '일정'으로 통일

- 헤더 메뉴, 페이지 제목, 안내 메시지 등 전체 변경
- Home, Schedule, Header, AdminDashboard 파일 수정
This commit is contained in:
caadiq 2026-01-03 14:30:30 +09:00
parent 27878816b1
commit 035cdf0383
4 changed files with 7 additions and 7 deletions

View file

@ -14,7 +14,7 @@ function Header() {
{ path: '/', label: '홈' }, { path: '/', label: '홈' },
{ path: '/members', label: '멤버' }, { path: '/members', label: '멤버' },
{ path: '/album', label: '앨범' }, { path: '/album', label: '앨범' },
{ path: '/schedule', label: '스케줄' }, { path: '/schedule', label: '일정' },
]; ];
return ( return (

View file

@ -75,7 +75,7 @@ function Home() {
className="group p-8 bg-gray-50 rounded-2xl hover:bg-primary hover:text-white transition-all duration-300" className="group p-8 bg-gray-50 rounded-2xl hover:bg-primary hover:text-white transition-all duration-300"
> >
<Calendar size={40} className="mb-4 text-primary group-hover:text-white" /> <Calendar size={40} className="mb-4 text-primary group-hover:text-white" />
<h3 className="text-xl font-bold mb-2">스케줄</h3> <h3 className="text-xl font-bold mb-2">일정</h3>
<p className="text-gray-500 group-hover:text-white/80">다가오는 일정을 확인하세요</p> <p className="text-gray-500 group-hover:text-white/80">다가오는 일정을 확인하세요</p>
</Link> </Link>
</div> </div>
@ -117,11 +117,11 @@ function Home() {
</div> </div>
</section> </section>
{/* 스케줄 미리보기 */} {/* 일정 미리보기 */}
<section className="py-16 bg-white"> <section className="py-16 bg-white">
<div className="max-w-7xl mx-auto px-6"> <div className="max-w-7xl mx-auto px-6">
<div className="flex justify-between items-center mb-8"> <div className="flex justify-between items-center mb-8">
<h2 className="text-3xl font-bold">다가오는 스케줄</h2> <h2 className="text-3xl font-bold">다가오는 일정</h2>
<Link to="/schedule" className="text-primary hover:underline flex items-center gap-1"> <Link to="/schedule" className="text-primary hover:underline flex items-center gap-1">
전체보기 <ArrowRight size={16} /> 전체보기 <ArrowRight size={16} />
</Link> </Link>

View file

@ -94,7 +94,7 @@ function Schedule() {
animate={{ opacity: 1, y: 0 }} animate={{ opacity: 1, y: 0 }}
className="text-4xl font-bold mb-4" className="text-4xl font-bold mb-4"
> >
스케줄 일정
</motion.h1> </motion.h1>
<motion.p <motion.p
initial={{ opacity: 0 }} initial={{ opacity: 0 }}
@ -308,7 +308,7 @@ function Schedule() {
}) })
) : ( ) : (
<div className="text-center py-20 text-gray-500"> <div className="text-center py-20 text-gray-500">
{selectedDate ? '선택한 날짜에 일정이 없습니다.' : '예정된 스케줄이 없습니다.'} {selectedDate ? '선택한 날짜에 일정이 없습니다.' : '예정된 일정이 없습니다.'}
</div> </div>
)} )}
</div> </div>

View file

@ -62,7 +62,7 @@ function AdminDashboard() {
{ {
icon: Calendar, icon: Calendar,
label: '일정 관리', label: '일정 관리',
description: '스케줄 추가 및 관리', description: '일정 추가 및 관리',
path: '/admin/schedule', path: '/admin/schedule',
color: 'bg-blue-500' color: 'bg-blue-500'
}, },