2023-03-04 18:11:52 +00:00
|
|
|
---
|
2023-03-06 12:03:38 +00:00
|
|
|
//TODO:
|
|
|
|
// - Add highlighted TAs above the rest
|
|
|
|
// > I think you should have all of them on the site.
|
|
|
|
// > You could have the notable ones like you do now, but at the bottom, there could be a drop-down or "expand" or "more" or
|
|
|
|
// > some other section like that which you could click and show the rest
|
|
|
|
|
2023-03-04 18:11:52 +00:00
|
|
|
import Layout from '../layouts/Layout.astro';
|
|
|
|
|
|
|
|
import TaSection from '../layouts/taSection.astro';
|
|
|
|
import TaCard from '../components/taCard.astro';
|
|
|
|
import tadata from '../../static/_tadata.json'
|
|
|
|
|
2023-03-05 22:10:37 +00:00
|
|
|
const description = "A collection of TAs previously completed be Firq."
|
2023-03-04 18:11:52 +00:00
|
|
|
---
|
|
|
|
|
2023-03-05 22:10:37 +00:00
|
|
|
<Layout title="TA Collection - Firq FGO Site" currentpage="ta-collection" descriptionOverride={description}>
|
2023-03-04 18:11:52 +00:00
|
|
|
<TaSection title="Completed TAs">
|
|
|
|
{tadata.map((item) => (<TaCard {...item}/>))}
|
|
|
|
</TaSection>
|
|
|
|
</Layout>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|