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

25 lines
765 B
Text
Raw Normal View History

2023-02-11 14:05:53 +00:00
---
import Layout from '../layouts/Layout.astro';
import BaseSection from '../layouts/baseSection.astro';
import ServantCard from '../components/servantCard.astro';
import servantdata from '../../static/_servantdata.json'
2023-03-04 18:11:52 +00:00
import CeCard from '../components/ceCard.astro';
2023-02-11 14:05:53 +00:00
import cedata from '../../static/_cedata.json'
const description = "A list of all the servants and ces that Firq can offer up on support for TA."
2023-02-11 14:05:53 +00:00
---
<Layout title="Servants - Firq FGO Site" currentpage="servants" descriptionOverride={description}>
2023-02-11 14:05:53 +00:00
<BaseSection title="Servant Offering">
{servantdata.map((item) => (<ServantCard {...item}/>))}
</BaseSection>
<BaseSection title="CE Offering">
{cedata.map((item) => (<CeCard {...item}/>))}
</BaseSection>
</Layout>
<style>
</style>