import React from "react" import { colors } from "../styles/color" const Link: React.FC<{ href: string; text: string }> = ({ href, text }) => ( {text} ) export const Footer: React.FC = () => (
)