Merge fix

This commit is contained in:
Firq 2023-03-09 11:44:18 +01:00
parent 9584987150
commit a2ee3564bc
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
26 changed files with 1125 additions and 1039 deletions

View file

@ -1,24 +1,28 @@
---
import Layout from '../layouts/Layout.astro';
import BaseSection from '../layouts/baseSection.astro';
import Layout from '../layouts/Layout.astro'
import BaseSection from '../layouts/baseSection.astro'
import ServantCard from '../components/servantCard.astro';
import ServantCard from '../components/servantCard.astro'
import servantdata from '../../static/_servantdata.json'
import CeCard from '../components/ceCard.astro';
import CeCard from '../components/ceCard.astro'
import cedata from '../../static/_cedata.json'
const description = "A list of all the servants and ces that Firq can offer up on support for TA."
const description =
'A list of all the servants and ces that Firq can offer up on support for TA.'
---
<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>
<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>
</Layout>
<style>
</style>
<style></style>