import { Typography } from '../../Typography' import { type FooterItem } from '../config' import { Item } from './Item' type Props = { label: string items: FooterItem[] } export function Category({ label, items }: Props) { return ( ) }