Redesign mostly done
This commit is contained in:
parent
a5521b479e
commit
8d2ef10fb7
24 changed files with 204 additions and 145 deletions
src/pages
19
src/pages/ta-collection.astro
Normal file
19
src/pages/ta-collection.astro
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
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>
|
Loading…
Add table
Add a link
Reference in a new issue