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: '/blog', internal: true }, { label: '源码仓库', href: SITE.repo }, { label: 'RSS 订阅', href: '/rss.xml' }, ], }, ] as const export function SiteFooter() { return ( ) }