Skip to content

Commit ec7dee4

Browse files
committedOct 11, 2022
search page init
1 parent 302cf2b commit ec7dee4

File tree

4 files changed

+93
-16
lines changed

4 files changed

+93
-16
lines changed
 

‎components/search/Input.tsx

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+

‎pages/find.tsx

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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;

‎pages/index.tsx

+23-15
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,29 @@ const Home: NextPage = () => {
8787

8888
<main className={styles.main}>
8989
<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+
/>
105113
</main>
106114

107115
<footer className={styles.footer}>

‎styles/Home.module.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
.title {
4343
margin: 0;
4444
line-height: 1.15;
45-
font-size: 4rem;
45+
font-size: 3.5rem;
46+
margin-bottom: 30px;
4647
}
4748

4849
.title,

0 commit comments

Comments
 (0)
Please sign in to comment.