import BLOG from '@/blog.config' 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 /* eslint-disable-next-line @next/next/no-img-element */ ? {BLOG.AUTHOR} : }
{navBarTitle ? (

{navBarTitle}

) : (

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

)}
}