1
0
Fork 0
freesewing/packages/freesewing.dev/pages/index.js
2021-12-10 14:22:52 +01:00

28 lines
628 B
JavaScript

import Head from 'next/head'
import Image from 'next/image'
export default function Home() {
return (
<div>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="px-1">
<h1>
Welcome to <a href="https://nextjs.org">Next.js!</a>
</h1>
<button className="btn btn-primary">daisyUI Button</button>
<p>
Get started by editing{' '}
<code>pages/index.js</code>
</p>
</main>
</div>
)
}