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

37 lines
934 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'
import servantdata from '../../static/assets/data/_servantdata.json'
2023-03-04 18:11:52 +00:00
2023-03-09 10:44:18 +00:00
import CeCard from '../components/ceCard.astro'
import cedata from '../../static/assets/data/_cedata.json'
2023-02-11 14:05:53 +00:00
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>
2023-03-16 17:51:36 +00:00
<div class="placeholder"></div>
2023-03-09 10:44:18 +00:00
<BaseSection title="CEs">
{cedata.map((item) => <CeCard {...item} />)}
</BaseSection>
2023-03-16 22:29:16 +00:00
<div class="placeholder"></div>
2023-02-11 14:05:53 +00:00
</Layout>
2023-03-16 17:51:36 +00:00
<style>
.placeholder {
visibility: hidden;
width: 100%;
height: 2.5rem;
}
</style>