blob: e511d63c7c57a7f374773a6d0959fd5927e296b4 (
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 ResourcesBody from '../components/ResourcesBody.astro';
import IconBar from '../components/IconBar.astro';
---
<Layout title="Welcome to FOSSEE.">
<main>
<TopBar />
<Navbar />
<IconBar />
<ResourcesBody/>
<Footer/>
</main>
</Layout>
<style>
</style>
|