You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
2 years ago
|
import Head from 'next/head'
|
||
|
import Image from 'next/image'
|
||
|
import styles from '../styles/Home.module.css'
|
||
|
import {useRouter} from "next/router";
|
||
|
|
||
|
|
||
|
export default function Home() {
|
||
|
return (
|
||
|
<div className={styles.container}>
|
||
|
<Head>
|
||
|
<title>MyBlog</title>
|
||
|
<meta name="description" content="Generated by create next app" />
|
||
|
<link rel="icon" href="/favicon.ico" />
|
||
|
</Head>
|
||
|
|
||
|
<main className={styles.main}>
|
||
|
<h1 className={styles.title}>
|
||
|
Welcome to <a href="https://nextjs.org">Next.js!</a>
|
||
|
</h1>
|
||
|
|
||
|
<div className={styles.grid}>
|
||
|
<a href="/auth" className={styles.card}>
|
||
|
<h2>Sign in MyBlog</h2>
|
||
|
|
||
|
</a>
|
||
|
|
||
|
<a href="/register" className={styles.card}>
|
||
|
<h2>Register in MyBLog</h2>
|
||
|
</a>
|
||
|
|
||
|
<a
|
||
|
href="/blog"
|
||
|
className={styles.card}
|
||
|
>
|
||
|
<h2>Go to blog →</h2>
|
||
|
</a>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<footer className={styles.footer}>
|
||
|
<a
|
||
|
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
||
|
target="_blank"
|
||
|
rel="noopener noreferrer"
|
||
|
>
|
||
|
Powered by{' '}
|
||
|
<span className={styles.logo}>
|
||
|
<Image src="/vercel.svg" alt="Vercel Logo" width={72} height={16} />
|
||
|
</span>
|
||
|
</a>
|
||
|
</footer>
|
||
|
</div>
|
||
|
)
|
||
|
}
|