totito/pages/index.js

12 lines
237 B
JavaScript
Raw Permalink Normal View History

2022-09-20 09:00:55 -06:00
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
)
}