Skip to content

Commit 0338edc

Browse files
authored
Merge branch 'dev' into feature/home-page
2 parents 1d5f011 + 9e58675 commit 0338edc

5 files changed

Lines changed: 2 additions & 6 deletions

File tree

components/common/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { auth } from '@/lib/firebase';
1515
const navItems = [
1616
{ label: '홈', href: '/', icon: Home },
1717
{ label: '개발 일지', href: '/logs', icon: ClipboardList },
18-
{ label: '계획 관리', href: '/plans/new', icon: CalendarPlus },
18+
{ label: '계획 관리', href: '/plans', icon: CalendarPlus },
1919
{ label: '새 페이지 만들기', href: '/write', icon: CopyPlus },
2020
];
2121

components/plans/AddPlanButton.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// components/dashboard/AddPlanButton.tsx
21
import { Plus } from 'lucide-react';
32

43
export default function AddPlanButton() {

components/plans/PlanSection.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// components/dashboard/PlanSection.tsx
2-
'use client'; // 상태 관리를 위해 클라이언트 컴포넌트 선언
1+
'use client';
32

43
import { useState } from 'react';
54
import { ChevronDown, ChevronUp, Plus } from 'lucide-react';

components/plans/SearchBar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// components/dashboard/SearchBar.tsx
21
import { Search } from 'lucide-react';
32

43
export default function SearchBar() {

components/plans/TaskItem.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// components/dashboard/TaskItem.tsx
21
import { Check } from 'lucide-react';
32

43
interface TaskItemProps {

0 commit comments

Comments
 (0)