alas/web/pages/index.tsx
Armin Friedl a279965fed
All checks were successful
continuous-integration/drone/push Build is passing
Add dalle
2022-07-10 19:47:06 +02:00

17 lines
418 B
TypeScript

import Head from 'next/head'
import Artsy from "../components/Artsy";
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>
<Artsy />
</div>
)
}