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