2023-02-11 14:05:53 +00:00
---
2023-03-09 10:44:18 +00:00
import Layout from '../layouts/Layout.astro'
2023-03-04 18:11:52 +00:00
2023-03-09 10:44:18 +00:00
import ContactSection from '../layouts/contactSection.astro'
2024-07-19 20:52:15 +00:00
import ContactCard from '../components/cards/contactCard.astro'
2023-12-25 17:39:44 +00:00
import contactdata from '../../static/data/_contactdata.json'
2023-03-05 00:11:34 +00:00
2023-03-09 10:44:18 +00:00
import CustomFooter from '../layouts/customFooter.astro'
2024-07-19 20:52:15 +00:00
import TechnologyCard from '../components/cards/technologyCard.astro'
2023-12-25 17:39:44 +00:00
import technologydata from '../../static/data/_technologydata.json'
2024-07-19 20:52:15 +00:00
import SmallTitle from '../components/titles/smallTitle.astro'
2023-03-05 22:10:37 +00:00
2023-03-09 10:44:18 +00:00
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."
2024-07-19 20:52:15 +00:00
const subtext =
"This is a small sideproject that I'm creating. First time doing webdev in general, and first project using Typescript."
2023-02-11 14:05:53 +00:00
---
2023-03-09 10:44:18 +00:00
<Layout
title="About - Firq FGO Site"
currentpage="about"
descriptionOverride={description}
>
2024-07-19 20:52:15 +00:00
<SmallTitle maintext="About" subtext={subtext} fadeout={true} />
2023-12-25 19:06:16 +00:00
<ContactSection title="Technologies used">
2023-03-14 20:49:13 +00:00
{technologydata.map((item) => <TechnologyCard {...item} />)}
2023-12-25 19:06:16 +00:00
</ContactSection>
2023-03-09 10:44:18 +00:00
<ContactSection title="Contact me">
{contactdata.map((item) => <ContactCard {...item} />)}
</ContactSection>
2023-12-25 19:06:16 +00:00
<ContactSection title="Disclaimers">
2023-03-09 10:44:18 +00:00
<CustomFooter />
2023-12-25 19:06:16 +00:00
</ContactSection>
2023-02-11 14:05:53 +00:00
</Layout>
2023-03-09 10:44:18 +00:00
<style></style>