import React from 'react' import Link from "next/link"; const FooterLink = ({text, linkText, href}: FooterLinkProps) => { return (

{text}{` `} {linkText}

) } export default FooterLink