--- //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 import Layout from '../layouts/Layout.astro' import TaSection from '../layouts/taSection.astro' import TaCard from '../components/taCard.astro' import tadata from '../../static/assets/data/_tadata.json' import featured_data from '../../static/assets/data/_featureddata.json' const important_data = tadata.filter(function (el) { return [ 'Ibuki 3T (LB 5.5)', 'DB 7T (No Duplicates)', 'Kingprotea 1T', 'Goetia Memorial Quest 2T', 'Morgan 3T (LB 6) Skadi' ].includes(el.title) }) tadata.sort((a, b) => Date.parse(b.date) - Date.parse(a.date)) important_data.sort((a, b) => Date.parse(b.date) - Date.parse(a.date)) featured_data.sort((a, b) => Date.parse(b.date) - Date.parse(a.date)) const description = 'A collection of TAs previously completed be Firq.' --- {important_data.map((item) => )} {tadata.map((item) => )} {featured_data.map((item) => )}