2023-01-15 17:53:19 +01:00
---
2024-10-29 21:02:37 +01:00
import AboutText from '@components/aboutText.astro'
2024-10-26 22:41:24 +02:00
import FavouriteCard from '@components/cards/favouriteCard.astro'
2025-04-08 09:32:41 +00:00
import Placeholder from '@components/placeholder.astro'
2024-10-26 22:41:24 +02:00
import Hi from '@components/titles/title.astro'
2025-02-06 19:08:51 +01:00
import favouritesdata from '@datafiles/favouritesdata.json'
2024-10-29 21:02:37 +01:00
import Layout from '@layouts/Layout.astro'
import BaseSection from '@layouts/baseSection.astro'
2023-01-20 23:16:05 +01:00
2023-03-09 11:44:18 +01:00
const description =
2023-03-17 21:31:29 +01:00
'The very own page of Firq for providing informating about TA servants, listing past TA achievements and hosting a blog for talking about FGO, Programming and other stuff'
2023-01-15 17:53:19 +01:00
---
2023-03-09 11:44:18 +01:00
<Layout
title="Home - Firq FGO Site"
currentpage="home"
descriptionOverride={description}
>
2024-07-19 22:52:15 +02:00
<Hi />
2024-10-26 17:37:35 +02:00
<BaseSection title="About me">
<AboutText/>
</BaseSection>
2025-04-07 21:53:48 +02:00
<BaseSection title="Favourites">
2023-03-09 11:44:18 +01:00
{favouritesdata.map((item) => <FavouriteCard {...item} />)}
</BaseSection>
2025-04-08 09:32:41 +00:00
<Placeholder height="1.5rem"/>
2023-01-15 17:53:19 +01:00
</Layout>
2023-03-09 11:44:18 +01:00
<style></style>