blob: 9320471fac84848eb595f6d82003d6f21656241b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
import Layout from '../layouts/Layout.astro';
import TopBar from '../components/TopBar.astro';
import Navbar from '../components/Navbar.astro';
import Footer from '../components/Footer.astro';
import ScheduleBody from '../components/ScheduleBody.astro';
import IconBar from '../components/IconBar.astro';
---
<Layout title="Welcome to FOSSEE.">
<main>
<TopBar />
<Navbar />
<IconBar/>
<ScheduleBody/>
<Footer/>
</main>
</Layout>
<style>
</style>
|