diff --git a/app/(marketing)/documentatie/[category]/page.tsx b/app/(marketing)/documentatie/[category]/page.tsx index 805093a..ed0c422 100644 --- a/app/(marketing)/documentatie/[category]/page.tsx +++ b/app/(marketing)/documentatie/[category]/page.tsx @@ -6,7 +6,7 @@ import { notFound } from 'next/navigation' import { MDXRemote } from 'next-mdx-remote/rsc' -import { getRelease, getAllReleases } from '@/lib/mdx/releases' +import { getRelease, getAllReleases } from '@/lib/mdx/documentatie' import { mdxComponents } from '../components/mdx-components' interface ReleasePageProps { diff --git a/app/(marketing)/documentatie/components/release-sidebar-wrapper.tsx b/app/(marketing)/documentatie/components/release-sidebar-wrapper.tsx index 4e11c66..53b4eb1 100644 --- a/app/(marketing)/documentatie/components/release-sidebar-wrapper.tsx +++ b/app/(marketing)/documentatie/components/release-sidebar-wrapper.tsx @@ -1,3 +1,5 @@ +'use client' + /** * Release Sidebar Wrapper * @@ -5,7 +7,7 @@ */ import { ReleaseSidebar } from './release-sidebar' -import type { ReleaseNote, GroupMetadata, CategoryMetadata } from '@/lib/mdx/releases' +import type { ReleaseNote, GroupMetadata, CategoryMetadata } from '@/lib/mdx/documentatie' interface ReleaseSidebarWrapperProps { releases: ReleaseNote[] diff --git a/app/(marketing)/documentatie/components/release-sidebar.tsx b/app/(marketing)/documentatie/components/release-sidebar.tsx index 548f029..c15ccee 100644 --- a/app/(marketing)/documentatie/components/release-sidebar.tsx +++ b/app/(marketing)/documentatie/components/release-sidebar.tsx @@ -55,11 +55,10 @@ export function ReleaseSidebar({ releases, metadata }: ReleaseSidebarProps) {