import { Link } from 'rspress/theme'; import { useUrl } from '../utils'; import styles from './Overview.module.scss'; export interface GroupItem { text: string; link: string; } export interface Group { name: string; items: GroupItem[]; } declare const OVERVIEW_GROUPS: Group[]; export default function Overview() { const Nodes = OVERVIEW_GROUPS.map((group) => ( <>

{group.name}

)); return
{Nodes}
; }