blob: 4f5216e42521976674a045eb9f342e92a501d1fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
import Layout from '../layouts/Layout.astro';
import Card from '../components/Card.astro';
import Nav from '../components/layout/Nav.astro';
import HomeBody from '../components/HomeBody.astro';
---
<Layout title="Scilab Case Study Hackathon 2025">
<!-- <TopBar />
<Nav />
<Header />
<IconBar /> -->
<HomeBody />
<!-- <Footer/> -->
</Layout>
|