-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#15] onboard page 수정 및 기본 라우팅 온보딩 페이지로 변경
- Loading branch information
1 parent
87f439e
commit b3f6446
Showing
11 changed files
with
135 additions
and
116 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
'use client' | ||
|
||
import Link from 'next/link' | ||
import Nav from '../../_common/nav/index' | ||
import Title from '../../_common/text/title' | ||
import Search from '../../_components/search' | ||
import S from './page.module.css' | ||
|
||
//TODO: 주석처리 사항들에 데이터 가져오기 | ||
function Main() { | ||
return ( | ||
<main className={S.wrapper}> | ||
<Nav /> | ||
<div className={S.inWrapper}> | ||
<Search /> | ||
<div className={S.marginWrapper}> | ||
<Title title="인기 많은 툴" /> | ||
</div> | ||
<div className={S.toolCardWrapper}> | ||
{/* <ToolCard | ||
title="" | ||
subTitle="" | ||
description="" | ||
toolImg="" | ||
/> */} | ||
</div> | ||
<div className={S.rowWrapper}> | ||
<Title title="검증 툴 리스트" /> | ||
<Link href="/list">자세히 보기</Link> | ||
</div> | ||
<div className={S.keyWordCardWrapper}> | ||
{/* <KeyWordTool title="" subTitle="" toolImg="" /> */} | ||
</div> | ||
</div> | ||
</main> | ||
) | ||
} | ||
|
||
export default Main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.