import { Link } from 'react-router-dom' import { SITE } from '@/content/site' import { LogoMark } from '@/components/logo' const COLUMNS = [ { title: 'PRODUCT', links: [ { label: '功能', href: '/#features' }, { label: '架构', href: '/#architecture' }, { label: '下载', href: '/download', internal: true }, ], }, { title: 'RESOURCES', links: [ { label: '下载桌面版', href: '/download', internal: true }, { label: '源码仓库', href: SITE.repo }, ], }, ] as const export function SiteFooter() { return ( ) }