File tree 4 files changed +93
-16
lines changed
4 files changed +93
-16
lines changed Original file line number Diff line number Diff line change
1
+ import PropTypes from "prop-types" ;
2
+ import { useState } from "react" ;
3
+
4
+
5
+
6
+ export default function Input ( {
7
+ } ) {
8
+ const [ value , setValue ] = useState ( '' )
9
+ return (
10
+ < input
11
+ style = { { padding :'10px' , width :'400px' } }
12
+ id = "help-suggester-input"
13
+ type = "text"
14
+ value = { value }
15
+ onChange = { ( e ) => {
16
+ setValue ( e . target . value )
17
+ console . log ( ' e.target.value' , e . target . value )
18
+
19
+ } }
20
+ placeholder = "Søg"
21
+ aria-label = { 'Søg' }
22
+ > </ input >
23
+ ) ;
24
+ }
25
+
Original file line number Diff line number Diff line change
1
+ import type { NextPage } from "next" ;
2
+ import Head from "next/head" ;
3
+ import Image from "next/image" ;
4
+ import styles from "../styles/Home.module.css" ;
5
+ import { useQuery , gql , DocumentNode } from "@apollo/client" ;
6
+ import Input from "../components/search/Input" ;
7
+ import Link from "next/link" ;
8
+
9
+ const Find : NextPage = ( ) => {
10
+ return (
11
+ < div className = { styles . container } >
12
+ < h1 > Det nye-nye-bibliotek.dk - Search</ h1 >
13
+ < Link href = "/" >
14
+ < h3
15
+ style = { {
16
+ color : "white" ,
17
+ border : "2px solid darkcyan" ,
18
+ padding : "5px" ,
19
+ maxWidth : "150px" ,
20
+ cursor : "pointer" ,
21
+ textAlign :'center'
22
+
23
+ } }
24
+ >
25
+ ⬅️ Go back
26
+ </ h3 >
27
+ </ Link >
28
+ < div
29
+ style = { {
30
+ display : "flex" ,
31
+ justifyContent : "center" ,
32
+ paddingTop : "40px" ,
33
+ paddingBottom : "30px" ,
34
+ borderBottom : "1px solid white" ,
35
+ } }
36
+ >
37
+ < Input />
38
+ </ div >
39
+ </ div >
40
+ ) ;
41
+ } ;
42
+
43
+ export default Find ;
Original file line number Diff line number Diff line change @@ -87,21 +87,29 @@ const Home: NextPage = () => {
87
87
88
88
< main className = { styles . main } >
89
89
< h1 className = { styles . title } > Det nye-nye-bibliotek.dk</ h1 >
90
- < p className = { styles . description } >
91
- < Link href = "/find" >
92
- < h3
93
- style = { {
94
- color : "black" ,
95
- backgroundColor : "whitesmoke" ,
96
- padding : "10px" ,
97
- } }
98
- >
99
- Go to search
100
- </ h3 >
101
- </ Link >
102
- </ p >
103
-
104
- < img src = { heros . image . url } />
90
+ < Link href = "/find" >
91
+ < h3
92
+ style = { {
93
+ color : "white" ,
94
+ backgroundColor : "darkcyan" ,
95
+ padding : "20px" ,
96
+ maxWidth : "200px" ,
97
+ cursor : "pointer" ,
98
+ position : "absolute" ,
99
+ marginLeft : "auto" ,
100
+ marginRight : "auto" ,
101
+ left : 0 ,
102
+ right : 0 ,
103
+ textAlign : "center" ,
104
+ } }
105
+ >
106
+ Søg
107
+ </ h3 >
108
+ </ Link >
109
+ < img
110
+ src = { heros . image . url }
111
+ style = { { width : "100vw" , height : "500px" } }
112
+ />
105
113
</ main >
106
114
107
115
< footer className = { styles . footer } >
Original file line number Diff line number Diff line change 42
42
.title {
43
43
margin : 0 ;
44
44
line-height : 1.15 ;
45
- font-size : 4rem ;
45
+ font-size : 3.5rem ;
46
+ margin-bottom : 30px ;
46
47
}
47
48
48
49
.title ,
You can’t perform that action at this time.
0 commit comments