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

29 lines
759 B
Text
Raw Normal View History

2023-02-11 14:05:53 +00:00
---
2023-03-09 10:44:18 +00:00
import Layout from '../layouts/Layout.astro'
import BaseSection from '../layouts/baseSection.astro'
2023-02-11 14:05:53 +00:00
2023-03-09 10:44:18 +00:00
import ServantCard from '../components/servantCard.astro'
2023-02-11 14:05:53 +00:00
import servantdata from '../../static/_servantdata.json'
2023-03-04 18:11:52 +00:00
2023-03-09 10:44:18 +00:00
import CeCard from '../components/ceCard.astro'
2023-02-11 14:05:53 +00:00
import cedata from '../../static/_cedata.json'
2023-03-09 10:44:18 +00:00
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
---
2023-03-09 10:44:18 +00:00
<Layout
title="Servants - Firq FGO Site"
currentpage="servants"
descriptionOverride={description}
>
<BaseSection title="Servants">
{servantdata.map((item) => <ServantCard {...item} />)}
</BaseSection>
<BaseSection title="CEs">
{cedata.map((item) => <CeCard {...item} />)}
</BaseSection>
2023-02-11 14:05:53 +00:00
</Layout>
2023-03-09 10:44:18 +00:00
<style></style>