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

39 lines
1.1 KiB
Text
Raw Normal View History

2023-02-11 15:05:53 +01:00
---
2024-10-26 22:41:24 +02:00
import Layout from '@layouts/Layout.astro'
import ServantSection from '@layouts/servantSection.astro'
2023-02-11 15:05:53 +01:00
2024-10-26 22:41:24 +02:00
import ServantCard from '@components/cards/servantCard.astro'
import servantdata from '@datafiles/servantdata.json'
2023-03-04 19:11:52 +01:00
2024-10-26 22:41:24 +02:00
import CeCard from '@components/cards/ceCard.astro'
import cedata from '@datafiles/cedata.json'
2024-10-26 22:41:24 +02:00
import SmallTitle from '@components/titles/smallTitle.astro'
2023-02-11 15:05:53 +01:00
2023-03-09 11:44:18 +01:00
const description =
'A list of all the servants and ces that Firq can offer up on support for TA.'
2023-02-11 15:05:53 +01:00
---
2023-03-09 11:44:18 +01:00
<Layout
title="Servants - Firq FGO Site"
currentpage="servants"
descriptionOverride={description}
>
2024-07-19 22:52:15 +02:00
<SmallTitle maintext='TA Offering' subtext='Servants and CEs I can offer for your TAs' fadeout={true}/>
2024-10-21 22:23:25 +02:00
<ServantSection title="Servants">
2024-10-22 21:34:18 +02:00
{servantdata.map((item, index) => <ServantCard {...item} index={index} />)}
2024-10-21 22:23:25 +02:00
</ServantSection>
2023-03-16 18:51:36 +01:00
<div class="placeholder"></div>
2024-10-21 22:23:25 +02:00
<ServantSection title="CEs">
2023-03-09 11:44:18 +01:00
{cedata.map((item) => <CeCard {...item} />)}
2024-10-21 22:23:25 +02:00
</ServantSection>
2023-03-16 23:29:16 +01:00
<div class="placeholder"></div>
2023-02-11 15:05:53 +01:00
</Layout>
2023-03-16 18:51:36 +01:00
<style>
.placeholder {
visibility: hidden;
width: 100%;
height: 2.5rem;
}
</style>