---
import PageBase from "./PageBase.astro";
import Nav from "../components/Nav.astro";
import ArticlePreviewList, {
type Props as ArticlePreviewListProps,
} from "../components/ArticlePreviewList.astro";
interface Props {
title: string;
articles: ArticlePreviewListProps["articles"];
}
const { title, articles } = Astro.props;
---
{title}