import { Link } from "react-router-dom"; import { MaterialIcon } from "@/utils/material"; import { GitHubLink, GITHUB_WEB, GITHUB_APP, GITHUB_LICENSE } from "@/pages/home/homeLinks"; import styles from "@/pages/home/home-footer.module.scss"; interface HomeFooterProps { onScrollToDownload?: () => void; } export function HomeFooter({ onScrollToDownload }: HomeFooterProps) { return ( ); }