--- import MainHead from '../components/MainHead.astro'; import Footer from '../components/Footer/index.jsx'; import Nav from '../components/Nav/index.jsx'; import PortfolioPreview from '../components/PortfolioPreview/index.jsx'; const projects = Astro.fetchContent('./project/*.md') .filter(({ published_at }) => !!published_at) .sort((a, b) => new Date(b.published_at) - new Date(a.published_at)); ---