firq-dev-website/src/pages/about.astro

47 lines
1.5 KiB
Text
Raw Normal View History

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';
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'
import CustomFooter from '../layouts/customFooter.astro';
import TechnologyCard from '../components/technologyCard.astro';
const techologydata = [{
"title": "Astro",
"link": "https://astro.build",
"image": "astro"
},
{
"title": "GitLab",
"link": "https://gitlab.io",
"image": "gitlab"
},
{
"title": "Typescript",
"link": "https://www.typescriptlang.org/",
"image": "typescript"
},]
const description = "A summary of the technologies used as well as my contact information. You'll also find disclaimers and thank you notes for the people that helped me.";
2023-02-11 14:05:53 +00:00
---
<Layout title="About - Firq FGO Site" currentpage="about" descriptionOverride={description}>
2023-03-04 18:11:52 +00:00
<BasicSection title="About">
This is a small sideproject that I'm creating. First time doing webdev in general, and first project using Typescript.
</BasicSection>
<BasicSection title="Technologies used">
{techologydata.map((item) => (<TechnologyCard {...item}/>))}
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>
<BasicSection title="Disclaimers">
<CustomFooter />
</BasicSection>
2023-02-11 14:05:53 +00:00
</Layout>
<style>
</style>