import { GoLinkExternal } from "react-icons/go"; type VisitButtonProps = { href: string; }; export function ProjectVisitButton({ href }: VisitButtonProps) { return (
Visiter le site
); }