21 lines
826 B
Text
21 lines
826 B
Text
---
|
|
import Layout from '../layouts/Layout.astro';
|
|
import Hero from '../components/hero.astro';
|
|
import BaseSection from '../layouts/baseSection.astro';
|
|
import FavouriteCard from '../components/favouriteCard.astro';
|
|
import favouritesdata from '../../static/_favouritesdata.json';
|
|
|
|
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"
|
|
---
|
|
|
|
<Layout title="Home - Firq FGO Site" currentpage="home" descriptionOverride={description}>
|
|
<Hero>
|
|
<a rel="me" href="https://mastodon.neshweb.net/@Firq"></a>
|
|
</Hero>
|
|
<BaseSection title="Favourites">
|
|
{favouritesdata.map((item) => (<FavouriteCard {...item}/>))}
|
|
</BaseSection>
|
|
</Layout>
|
|
|
|
<style>
|
|
</style>
|