Files
NotionNext/themes/gitbook/components/LogoBar.js
2024-06-03 18:02:23 +08:00

30 lines
755 B
JavaScript

import LazyImage from '@/components/LazyImage'
import { siteConfig } from '@/lib/config'
import Link from 'next/link'
import CONFIG from '../config'
/**
* Logo区域
* @param {*} props
* @returns
*/
export default function LogoBar(props) {
const { siteInfo } = props
return (
<div id='top-wrapper' className='w-full flex items-center'>
<Link
href={`/${siteConfig('GITBOOK_INDEX_PAGE', '', CONFIG)}`}
className='flex text-md md:text-xl dark:text-gray-200'>
<LazyImage
src={siteInfo?.icon}
width={24}
height={24}
alt={siteConfig('AUTHOR')}
className='mr-2 hidden md:block'
/>
{siteInfo?.title || siteConfig('TITLE')}
</Link>
</div>
)
}