mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
starter主题-Logo相关
This commit is contained in:
@@ -18,6 +18,7 @@ export default function LazyImage({
|
||||
height,
|
||||
title,
|
||||
onLoad,
|
||||
onClick,
|
||||
style
|
||||
}) {
|
||||
const maxWidth = siteConfig('IMAGE_COMPRESS_WIDTH')
|
||||
@@ -122,7 +123,9 @@ export default function LazyImage({
|
||||
if (style) {
|
||||
imgProps.style = style
|
||||
}
|
||||
|
||||
if (onClick) {
|
||||
imgProps.onClick = onClick
|
||||
}
|
||||
return (
|
||||
<>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
/* eslint-disable @next/next/no-img-element */
|
||||
/* eslint-disable @next/next/no-html-link-for-pages */
|
||||
import LazyImage from '@/components/LazyImage'
|
||||
import { siteConfig } from '@/lib/config'
|
||||
import { useGlobal } from '@/lib/global'
|
||||
import throttle from 'lodash.throttle'
|
||||
@@ -48,14 +49,14 @@ export const Logo = props => {
|
||||
<div className='navbar-logo flex items-center w-full py-5 cursor-pointer'>
|
||||
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||
{logo && (
|
||||
<img
|
||||
<LazyImage
|
||||
priority
|
||||
onClick={() => {
|
||||
router.push('/')
|
||||
}}
|
||||
src={logo}
|
||||
height={14}
|
||||
alt='logo'
|
||||
className='header-logo w-full mr-1'
|
||||
className='header-logo mr-1 h-8'
|
||||
/>
|
||||
)}
|
||||
{/* logo文字 */}
|
||||
|
||||
Reference in New Issue
Block a user