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

32 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 CeCard from '@components/cards/ceCard.astro'
2025-04-08 09:32:41 +00:00
import ServantCard from '@components/cards/servantCard.astro'
import Placeholder from '@components/placeholder.astro'
2024-10-26 22:41:24 +02:00
import SmallTitle from '@components/titles/smallTitle.astro'
2025-04-08 09:32:41 +00:00
import cedata from '@datafiles/cedata.json'
import servantdata from '@datafiles/servantdata.json'
import Layout from '@layouts/Layout.astro'
import ServantSection from '@layouts/servantSection.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="fgo"
2023-03-09 11:44:18 +01:00
descriptionOverride={description}
>
<SmallTitle maintext='TA Offering' subtext='Servants and CEs I can offer for your TAs' fadeout={true} baseurl='fgo' returnbutton={true} buttontext='FGO'/>
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>
2025-04-08 09:32:41 +00:00
<Placeholder height="2.5rem"/>
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>
2025-04-08 09:32:41 +00:00
<Placeholder height="2.5rem"/>
2023-02-11 15:05:53 +01:00
</Layout>
2025-04-08 09:32:41 +00:00
<style></style>