2024-02-06 17:46:09 +01:00
|
|
|
import { Head } from '$fresh/runtime.ts'
|
2024-02-15 14:02:22 +01:00
|
|
|
import { AutoGrid } from '../components/AutoGrid.tsx'
|
2024-02-14 17:13:13 +01:00
|
|
|
import { BlogCard, blogMock } from '../components/BlogCard.tsx'
|
|
|
|
import { CohabitInfoTable } from '../components/CohabitInfoTable.tsx'
|
2024-02-06 17:46:09 +01:00
|
|
|
import { Heros } from '../components/Heros.tsx'
|
2024-02-15 11:30:35 +01:00
|
|
|
import { MachineCard, machineMock } from '../components/MachineCard.tsx'
|
2024-02-15 14:04:01 +01:00
|
|
|
import { MemberCard, memberMock } from '../components/MemberCard.tsx'
|
2024-02-15 12:50:40 +01:00
|
|
|
import { ProjectCard, projectMock } from '../components/ProjectCard.tsx'
|
2024-02-14 17:13:13 +01:00
|
|
|
import { SponsorCards } from '../components/SponsorCards.tsx'
|
2024-02-06 17:46:09 +01:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
|
|
|
<title>Fablab Coh@bit</title>
|
|
|
|
</Head>
|
|
|
|
<Heros />
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|