Skip to content

Commit

Permalink
feat: 연락처, 타임라인 route page 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
danivelop committed Dec 17, 2023
1 parent f3ddc50 commit c59c76a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions services/web/src/app/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function ContactPage() {
return (
<div>
<h1>연락처</h1>
</div>
);
}

export default ContactPage;
9 changes: 9 additions & 0 deletions services/web/src/app/timeline/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function TimelinePage() {
return (
<div>
<h1>타임라인</h1>
</div>
);
}

export default TimelinePage;

0 comments on commit c59c76a

Please sign in to comment.