import { getLocale, getTranslations } from 'next-intl/server'; import { SitePageHeader } from '../_components/site-page-header'; import { DocsCards } from './_components/docs-cards'; import { getDocs } from './_lib/server/docs.loader'; export const generateMetadata = async () => { const t = await getTranslations('marketing'); return { title: t('documentation'), }; }; async function DocsPage() { const t = await getTranslations('marketing'); const locale = await getLocale(); const items = await getDocs(locale); // Filter out any docs that have a parentId, as these are children of other docs const cards = items.filter((item) => !item.parentId); return (
); } export default DocsPage;