import Link from "next/link"; import styles from "./Box.module.css"; export interface Props { href: string; text: string; } const Box = ({ text, href }: Props): JSX.Element => ( {text} → ); export default Box;