24 lines
821 B
Text
24 lines
821 B
Text
|
---
|
||
|
import Layout from '../layouts/Layout.astro';
|
||
|
import CustomFooter from '../layouts/customFooter.astro';
|
||
|
import Hometitle from '../layouts/hometitle.astro';
|
||
|
import NavbuttonsTitle from '../components/navbuttonsTitle.astro';
|
||
|
import ContactSection from '../layouts/contactSection.astro';
|
||
|
import contactdata from '../../static/_contactdata.json'
|
||
|
import ContactCard from '../components/contactCard.astro';
|
||
|
import AboutSection from '../layouts/aboutSection.astro';
|
||
|
|
||
|
---
|
||
|
|
||
|
<Layout title="Firq FGO Site">
|
||
|
<AboutSection title="About">
|
||
|
This is a small sideproject that I'm creating. It uses Astro for developing and Gitlab for providing the site.
|
||
|
</AboutSection>
|
||
|
<ContactSection title="Contact me">
|
||
|
{contactdata.map((item) => (<ContactCard {...item}/>))}
|
||
|
</ContactSection>
|
||
|
|
||
|
</Layout>
|
||
|
|
||
|
<style>
|
||
|
</style>
|