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

24 lines
632 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'
---
<Layout title="Servants - Firq FGO Site" currentpage="servants">
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>