14 lines
232 B
TypeScript
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 />
|
|
</>
|
|
)
|
|
}
|