blob: b984cae5d081c9edb68b35354c657a2ec8caf288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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 (
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
)
}
export default Home
|