import BLOG from '@/blog.config' import LazyImage from '@/components/LazyImage' import Link from 'next/link' import CONFIG from '../config' import { SvgIcon } from './SvgIcon' /** * logo文字栏 * @param {*} props * @returns */ export default function LogoBar(props) { const { navBarTitle, siteInfo } = props return
{CONFIG.NAV_NOTION_ICON ? : }
{navBarTitle ? (

{navBarTitle}

) : (

{siteInfo?.title} {' '}{siteInfo?.description}

)}
}