diff options
| author | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-11-04 13:34:02 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-11-04 13:34:02 +0200 |
| commit | 462b2fe10cf45da3dbcb5ee20ca6dfb79f46e6b6 (patch) | |
| tree | 2862938769f5c3e0efd57f5256dbdbb5452cdb4e /pages/index.tsx | |
Initial commit
Diffstat (limited to 'pages/index.tsx')
| -rw-r--r-- | pages/index.tsx | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pages/index.tsx b/pages/index.tsx new file mode 100644 index 0000000..b4eb1cf --- /dev/null +++ b/pages/index.tsx @@ -0,0 +1,32 @@ +import Head from "next/head"; +import Box from "../components/Box/Box"; +import Social from "../components/Social/Social"; +import styles from "../styles/Home.module.css"; + +export default function Home(): JSX.Element { + return ( + <div className={styles.container}> + <Head> + <title>jan.systems</title> + <link rel="icon" href="/favicon.ico" /> + <meta name="description" content="The personal home page of Jan Tuomi" /> + </Head> + + <main className={styles.main}> + <h1 className={styles.title}> + jan.systems + </h1> + + <div className={styles.socials}> + <Social type="telegram" /> + <Social type="linkedin" /> + <Social type="github" /> + </div> + + <div className={styles.boxes}> + <Box text="Files" href="/files" /> + </div> + </main> + </div> + ); +} |
