2023-01-15 17:53:19 +01:00
---
import Layout from '../layouts/Layout.astro';
2023-03-04 19:11:52 +01:00
import Hero from '../components/hero.astro';
2023-03-04 21:25:00 +01:00
import BaseSection from '../layouts/baseSection.astro';
import FavouriteCard from '../components/favouriteCard.astro';
2023-03-04 21:48:21 +01:00
import favouritesdata from '../../static/_favouritesdata.json';
2023-01-20 23:16:05 +01:00
2023-03-05 23:10:37 +01:00
const description = "The very own page of Firq for providing informating about TA servants, listing past TA achievements and (in the future) hosting a blog for talking about FGO, Programming and other stuff"
2023-01-15 17:53:19 +01:00
---
2023-03-05 23:10:37 +01:00
<Layout title="Home - Firq FGO Site" currentpage="home" descriptionOverride={description}>
2023-03-06 21:05:35 +01:00
<Hero>
<a rel="me" href="https://mastodon.neshweb.net/@Firq"></a>
</Hero>
2023-03-04 21:25:00 +01:00
<BaseSection title="Favourites">
{favouritesdata.map((item) => (<FavouriteCard {...item}/>))}
</BaseSection>
2023-01-15 17:53:19 +01:00
</Layout>
<style>
</style>