Continuing the redesign

This commit is contained in:
Firq 2024-10-21 22:23:25 +02:00
parent 9d8493273d
commit 1f7709031c
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
9 changed files with 699 additions and 690 deletions

View file

@ -1,6 +1,6 @@
---
import Layout from '../layouts/Layout.astro'
import BaseSection from '../layouts/baseSection.astro'
import ServantSection from '../layouts/servantSection.astro'
import ServantCard from '../components/cards/servantCard.astro'
import servantdata from '../../static/data/_servantdata.json'
@ -19,13 +19,13 @@ const description =
descriptionOverride={description}
>
<SmallTitle maintext='TA Offering' subtext='Servants and CEs I can offer for your TAs' fadeout={true}/>
<BaseSection title="Servants">
<ServantSection title="Servants">
{servantdata.map((item) => <ServantCard {...item} />)}
</BaseSection>
</ServantSection>
<div class="placeholder"></div>
<BaseSection title="CEs">
<ServantSection title="CEs">
{cedata.map((item) => <CeCard {...item} />)}
</BaseSection>
</ServantSection>
<div class="placeholder"></div>
</Layout>