Notable TA section created
This commit is contained in:
parent
d5052a8a93
commit
acc66bafeb
2 changed files with 17 additions and 2 deletions
src/pages
|
@ -11,10 +11,18 @@ import TaSection from '../layouts/taSection.astro';
|
|||
import TaCard from '../components/taCard.astro';
|
||||
import tadata from '../../static/_tadata.json'
|
||||
|
||||
const important_data = tadata.filter(function (el) {
|
||||
return ["Ibuki 3T (Lostbelt 5.5)", "DB 7T (No Duplicates)", "Kingprotea 1T"].includes(el.title);
|
||||
});
|
||||
|
||||
|
||||
const description = "A collection of TAs previously completed be Firq."
|
||||
---
|
||||
|
||||
<Layout title="TA Collection - Firq FGO Site" currentpage="ta-collection" descriptionOverride={description}>
|
||||
<TaSection title="Notable TAs" abovetext="">
|
||||
{important_data.map((item) => (<TaCard {...item}/>))}
|
||||
</TaSection>
|
||||
<TaSection title="Completed TAs">
|
||||
{tadata.map((item) => (<TaCard {...item}/>))}
|
||||
</TaSection>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue