Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
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 (
|
|
<div className={'flex w-full flex-1 flex-col gap-y-6 xl:gap-y-8'}>
|
|
<SitePageHeader
|
|
title={t('documentation')}
|
|
subtitle={t('documentationSubtitle')}
|
|
/>
|
|
|
|
<div className={'relative flex size-full justify-center overflow-y-auto'}>
|
|
<DocsCards cards={cards} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default DocsPage;
|