17 lines
413 B
TypeScript
17 lines
413 B
TypeScript
import { Head } from '$fresh/runtime.ts'
|
|
import { BlogCard, blogMock } from '../components/BlogCard.tsx'
|
|
import { CohabitInfoTable } from '../components/CohabitInfoTable.tsx'
|
|
import { Heros } from '../components/Heros.tsx'
|
|
import { SponsorCards } from '../components/SponsorCards.tsx'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Fablab Coh@bit</title>
|
|
</Head>
|
|
<Heros />
|
|
</>
|
|
)
|
|
}
|