-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
32 lines (29 loc) · 938 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import styles from '../styles/Home.module.css';
import { Header, Search } from '../components';
import Head from 'next/head';
export default function HomePage() {
return (
<section className={styles.container}>
<Head>
<title>Home - EcoWaste</title>
<meta
name="description"
content="Learn about sustainable waste disposal."
/>
<meta property="og:title" content="Home - EcoWaste" />
<meta
property="og:description"
content="Learn about sustainable waste disposal."
/>
<meta property="og:url" content="https://ecowaste.com" />
</Head>
<Header />
<main className={styles.main}>
<h1 className={styles.title}>EcoWaste</h1>
<h2>Learn how to dispose of your household items</h2>
<Search />
<img id={'banner'} alt={'Banner'} src={'/banner.jpeg'} />
</main>
</section>
);
}