File tree Expand file tree Collapse file tree 1 file changed +52
-1
lines changed
Expand file tree Collapse file tree 1 file changed +52
-1
lines changed Original file line number Diff line number Diff line change 1+ "use client" ;
2+ import { Button , SearchInput , Contents } from "@web/components" ;
3+
4+ import { useRouter } from "next/navigation" ;
5+
16export default function Home ( ) {
2- return < > </ > ;
7+ const router = useRouter ( ) ;
8+ return (
9+ < div className = "flex flex-col gap-4" >
10+ < div className = "flex items-center justify-between pl-5 pr-7 pt-4 pb-4 border-b border-solid border-zinc-300" >
11+ < img src = "/assets/logoWithTexts.svg" />
12+ < Button
13+ size = "small"
14+ backColor = "blue"
15+ borderColor = "blue"
16+ onClick = { ( ) => {
17+ router . push ( `/login` ) ;
18+ } }
19+ >
20+ 시작하기
21+ </ Button >
22+ </ div >
23+ < div className = "flex flex-col pt-6 pl-32 gap-10" >
24+ < SearchInput />
25+ < div className = "grid grid-cols-2 gap-10" >
26+ < Contents
27+ img = ""
28+ title = "test"
29+ date = "2025-06-01"
30+ tags = { [ "test" , "test" , "test" ] }
31+ />
32+ < Contents
33+ img = ""
34+ title = "test"
35+ date = "2025-06-01"
36+ tags = { [ "test" , "test" , "test" ] }
37+ />
38+ < Contents
39+ img = ""
40+ title = "test"
41+ date = "2025-06-01"
42+ tags = { [ "test" , "test" , "test" ] }
43+ />
44+ < Contents
45+ img = ""
46+ title = "test"
47+ date = "2025-06-01"
48+ tags = { [ "test" , "test" , "test" ] }
49+ />
50+ </ div >
51+ </ div >
52+ </ div >
53+ ) ;
354}
You can’t perform that action at this time.
0 commit comments