-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.tsx
executable file
·39 lines (35 loc) · 893 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
33
34
35
36
37
38
39
import Head from "next/head"
import styles from "styles/Home.module.css"
import Greeting from "components/Greeting"
import Image from "next/image"
function HomePage() {
return (
<div className={styles.container}>
<Head>
<title>Internet Computer</title>
</Head>
<main className={styles.main}>
<h3 className={styles.title}>
Welcome to the Internet Computer starter template
</h3>
<Greeting />
</main>
<footer className={styles.footer}>
<a
href="https://internetcomputer.org/"
target="_blank"
rel="noopener noreferrer"
>
<Image
width={140}
height={30}
src="/icp-logo.svg"
alt="DFINITY logo"
className={styles.logo}
/>
</a>
</footer>
</div>
)
}
export default HomePage