import BLOG from '@/blog.config' import { ArrowRightCircle, GlobeAlt } from '@/components/HeroIcons' import Link from 'next/link' import Announcement from './Announcement' import Card from './Card' /** * 社交信息卡 * @param {*} props * @returns */ export function InfoCard(props) { const { siteInfo, notice } = props return (
你好!我是
{/* eslint-disable-next-line @next/next/no-img-element */} {BLOG.AUTHOR}

{BLOG.AUTHOR}

) } /** * 了解更多按鈕 * @returns */ function MoreButton() { return
了解更多
}