import React from 'react' import Breadcrumbs from '../../components/forum/Breadcrumbs' export default function ForumSection({ category, boards = [] }) { const name = category?.name ?? 'Forum Section' const description = category?.description const preview = category?.preview_image ?? '/images/forum/default.jpg' const breadcrumbs = [ { label: 'Home', href: '/' }, { label: 'Forum', href: '/forum' }, { label: name }, ] return (
Forum Section
{description}
}Subcategories
Select a board to open its thread list.