website/routes/index.tsx

14 lines
217 B
TypeScript

import { Head } from '$fresh/runtime.ts'
import { Heros } from '../components/Heros.tsx'
export default function Home() {
return (
<>
<Head>
<title>Fablab Coh@bit</title>
</Head>
<Heros />
</>
)
}