import { SVGProps } from "react"; import { siteConfig } from "@/config/site"; import { Container } from "@/components/container"; const navigation = { social: [ { name: "GitHub", href: siteConfig.url.repo.github, icon: (props: SVGProps) => ( ), }, ], }; export function Footer() { return ( ); }