25 lines
830 B
Text
25 lines
830 B
Text
---
|
|
import Layout from '../layouts/Layout.astro';
|
|
import BasicSection from '../layouts/basicSection.astro';
|
|
|
|
import Navbar from '../components/navbar.astro';
|
|
import NavbarEntry from '../components/navbarEntry.astro';
|
|
import navdata from '../../static/_navdata.json'
|
|
|
|
import ContactSection from '../layouts/contactSection.astro';
|
|
import ContactCard from '../components/contactCard.astro';
|
|
import contactdata from '../../static/_contactdata.json'
|
|
---
|
|
|
|
<Layout title="About - Firq FGO Site" currentpage="about">
|
|
<BasicSection title="About">
|
|
This is a small sideproject that I'm creating. It uses Astro for developing and Gitlab for providing the site.
|
|
</BasicSection>
|
|
<ContactSection title="Contact me">
|
|
{contactdata.map((item) => (<ContactCard {...item}/>))}
|
|
</ContactSection>
|
|
|
|
</Layout>
|
|
|
|
<style>
|
|
</style> |