40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import type { NextPage } from 'next'
|
|
import Head from 'next/head'
|
|
import Image from 'next/image'
|
|
import styles from '../styles/Home.module.css'
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<div className={styles.container}>
|
|
<main className={styles.main}>
|
|
<h1 className={styles.title}>
|
|
My team estimating stuff
|
|
</h1>
|
|
|
|
<p className={styles.description}>
|
|
<i>A website serving markdown equipped with squiggle and latex</i>
|
|
</p>
|
|
|
|
<div className={styles.grid}>
|
|
<a href="https://squiggle-language.com/docs" className={styles.card}>
|
|
<h2>Documentation →</h2>
|
|
<p>Find in-depth information about Squiggle features and API.</p>
|
|
</a>
|
|
<a
|
|
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
|
|
className={styles.card}
|
|
>
|
|
<h2>Deploy →</h2>
|
|
<p>
|
|
Instantly deploy your Next.js site to a public URL with Vercel.
|
|
</p>
|
|
</a>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Home
|