import { Box, Link, Text } from '@chakra-ui/react'; type DimmedMoreProps = { text: string; href: string; }; export function DimmedMore(props: DimmedMoreProps) { const { text, href } = props; return ( {text} ); }