nwex.de/src/pages/index.tsx

15 lines
232 B
TypeScript
Raw Normal View History

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 />
</>
)
}