--- export interface Props { title: string } import '~/styles/app.css' import { Regular as Logo } from '~/components/Logo' import { Container } from '~/components/Container' import { Menu } from '~/components/Menu' import { ArrowLeftStartOnRectangleIcon } from '@heroicons/react/24/solid' import { getCollection } from 'astro:content' const courses = await getCollection('courses', ({ data }) => data.draft != true) const { title } = Astro.props const year = new Date().getFullYear() ---