nwex.de/src/pages/index.tsx
2021-04-04 16:46:47 +02:00

14 lines
232 B
TypeScript

import Head from "next/head"
import "../components/Hero"
import { Hero } from "../components/Hero"
export default function Home() {
return (
<>
<Head>
<title>nwex.de</title>
</Head>
<Hero />
</>
)
}