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