blob: 96ed50fc43d3fc5162c8136ddf82b301f867091d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import Head from 'next/head'
export default function Home() {
return (
<div>
<Head>
<title>Create Next App</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<h1>Welcome to the Snug Cup Inc. website!</h1>
<p>This website is currently work in progress...</p>
</div>
)
}
|