19 lines
470 B
Text
19 lines
470 B
Text
|
---
|
||
|
import Layout from '../layouts/Layout.astro';
|
||
|
import CustomFooter from '../layouts/customFooter.astro';
|
||
|
|
||
|
import TaSection from '../layouts/taSection.astro';
|
||
|
import TaCard from '../components/taCard.astro';
|
||
|
import tadata from '../../static/_tadata.json'
|
||
|
|
||
|
---
|
||
|
|
||
|
<Layout title="TA Collection" currentpage="ta-collection">
|
||
|
<TaSection title="Completed TAs">
|
||
|
{tadata.map((item) => (<TaCard {...item}/>))}
|
||
|
</TaSection>
|
||
|
<CustomFooter />
|
||
|
</Layout>
|
||
|
|
||
|
<style>
|
||
|
</style>
|