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

34 lines
1.1 KiB
Text
Raw Normal View History

2023-02-11 15:05:53 +01:00
---
2024-10-26 22:41:24 +02:00
import Layout from '@layouts/Layout.astro'
2023-03-04 19:11:52 +01:00
2024-10-26 22:41:24 +02:00
import ContactSection from '@layouts/contactSection.astro'
2024-10-26 22:41:24 +02:00
import CustomFooter from '@layouts/customFooter.astro'
import TechnologyCard from '@components/cards/technologyCard.astro'
import technologydata from '@datafiles/technologydata.json'
2024-10-26 22:41:24 +02:00
import SmallTitle from '@components/titles/smallTitle.astro'
2025-04-08 09:32:41 +00:00
import Placeholder from '@components/placeholder.astro'
2023-03-09 11:44:18 +01: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 22:52:15 +02: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 15:05:53 +01:00
---
2023-03-09 11:44:18 +01:00
<Layout
2025-04-12 19:05:52 +02:00
title="About - firq.dev"
2023-03-09 11:44:18 +01:00
currentpage="about"
descriptionOverride={description}
>
2024-10-29 21:02:37 +01:00
<SmallTitle maintext="About this site" subtext={subtext} fadeout={true} />
<ContactSection title="Powered by">
{technologydata.map((item) => <TechnologyCard {...item} />)}
2023-12-25 20:06:16 +01:00
</ContactSection>
<ContactSection title="Disclaimers">
2023-03-09 11:44:18 +01:00
<CustomFooter />
2023-12-25 20:06:16 +01:00
</ContactSection>
2025-04-08 09:32:41 +00:00
<Placeholder height="1.5rem"/>
2023-02-11 15:05:53 +01:00
</Layout>
2023-03-09 11:44:18 +01:00
<style></style>