2023-02-11 14:05:53 +00:00
|
|
|
---
|
|
|
|
import Layout from '../layouts/Layout.astro';
|
2023-03-04 18:11:52 +00:00
|
|
|
import BasicSection from '../layouts/basicSection.astro';
|
|
|
|
|
|
|
|
import Navbar from '../components/navbar.astro';
|
|
|
|
import NavbarEntry from '../components/navbarEntry.astro';
|
|
|
|
import navdata from '../../static/_navdata.json'
|
|
|
|
|
2023-02-11 14:05:53 +00:00
|
|
|
import ContactSection from '../layouts/contactSection.astro';
|
|
|
|
import ContactCard from '../components/contactCard.astro';
|
2023-03-04 18:11:52 +00:00
|
|
|
import contactdata from '../../static/_contactdata.json'
|
2023-02-11 14:05:53 +00:00
|
|
|
---
|
|
|
|
|
2023-03-04 20:25:00 +00:00
|
|
|
<Layout title="About - Firq FGO Site" currentpage="about">
|
2023-03-04 18:11:52 +00:00
|
|
|
<BasicSection title="About">
|
2023-02-11 14:05:53 +00:00
|
|
|
This is a small sideproject that I'm creating. It uses Astro for developing and Gitlab for providing the site.
|
2023-03-04 18:11:52 +00:00
|
|
|
</BasicSection>
|
2023-02-11 14:05:53 +00:00
|
|
|
<ContactSection title="Contact me">
|
|
|
|
{contactdata.map((item) => (<ContactCard {...item}/>))}
|
|
|
|
</ContactSection>
|
|
|
|
|
|
|
|
</Layout>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|