import { Flex, Text } from '@mantine/core'; import { useTranslation } from 'react-i18next'; import { LinkList } from '~/components/dashboard/link/list/link_list'; import type { CollectionWithLinks, PublicUser } from '~/types/app'; interface SharedPageProps { activeCollection: CollectionWithLinks & { author: PublicUser }; } export default function SharedPage({ activeCollection }: SharedPageProps) { const { t } = useTranslation('common'); return ( <> {activeCollection.name} {activeCollection.description} ); }