alas/web/pages/index.tsx

18 lines
418 B
TypeScript
Raw Permalink Normal View History

2022-07-03 15:29:11 +00:00
import Head from 'next/head'
2022-07-10 17:47:06 +00:00
import Artsy from "../components/Artsy";
2022-07-03 15:29:11 +00:00
export default function Home() {
return (
<div>
<Head>
<title>Alas, me got ye now</title>
<meta name="description" content="Finally understand what people really say"/>
<link rel="icon" href="/favicon.ico"/>
</Head>
2022-07-10 17:47:06 +00:00
<Artsy />
2022-07-03 15:29:11 +00:00
</div>
)
}