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

38 lines
1.3 KiB
Text
Raw Normal View History

2023-02-11 14:05:53 +00:00
---
2023-03-09 10:44:18 +00:00
import Layout from '../layouts/Layout.astro'
2023-03-11 18:59:51 +00:00
import AboutSection from '../layouts/aboutSection.astro'
2023-03-04 18:11:52 +00:00
2023-03-09 10:44:18 +00:00
import ContactSection from '../layouts/contactSection.astro'
import ContactCard from '../components/contactCard.astro'
import contactdata from '../../static/assets/data/_contactdata.json'
2023-03-09 10:44:18 +00:00
import CustomFooter from '../layouts/customFooter.astro'
import TechnologyCard from '../components/technologyCard.astro'
import technologydata from '../../static/assets/data/_technologydata.json'
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."
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}
>
2023-03-11 18:59:51 +00:00
<AboutSection title="About">
2023-03-09 10:44:18 +00:00
This is a small sideproject that I'm creating. First time doing webdev in
general, and first project using Typescript.
2023-03-11 18:59:51 +00:00
</AboutSection>
<AboutSection title="Technologies used">
{technologydata.map((item) => <TechnologyCard {...item} />)}
2023-03-11 18:59:51 +00:00
</AboutSection>
2023-03-09 10:44:18 +00:00
<ContactSection title="Contact me">
{contactdata.map((item) => <ContactCard {...item} />)}
</ContactSection>
2023-03-11 18:59:51 +00:00
<AboutSection title="Disclaimers">
2023-03-09 10:44:18 +00:00
<CustomFooter />
2023-03-11 18:59:51 +00:00
</AboutSection>
2023-02-11 14:05:53 +00:00
</Layout>
2023-03-09 10:44:18 +00:00
<style></style>