1
0
Fork 0
freesewing/packages/freesewing.dev/pages/index.js

28 lines
560 B
JavaScript
Raw Normal View History

import Head from 'next/head'
import Image from 'next/image'
export default function Home() {
return (
2021-12-10 10:30:15 +01:00
<div>
<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>
Welcome to <a href="https://nextjs.org">Next.js!</a>
</h1>
2021-12-10 10:30:15 +01:00
<p>
Get started by editing{' '}
2021-12-10 10:30:15 +01:00
<code>pages/index.js</code>
</p>
</main>
</div>
)
}