import Container from "~/components/Container"; import type { LinkProps } from "@remix-run/react"; import { Link } from "@remix-run/react"; import React from "react"; import { DiscordIcon } from "~/components/Icons"; import ExtLink from "~/components/ExtLink"; const FooterLink = ({ children, to, }: { children: React.ReactNode; to: LinkProps["to"]; }) => ( {children} ); export default function Footer() { return ( ); }