theme-commerce

This commit is contained in:
tangly1024
2024-03-24 22:19:23 +08:00
parent 89dbf49cc8
commit 2bf1183be2
54 changed files with 2823 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import Link from 'next/link'
// import { siteConfig } from '@/lib/config'
import LazyImage from '@/components/LazyImage';
/**
* 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='/' className='text-md md:text-xl dark:text-gray-200 r'>
<LazyImage className='h-12 mr-3' src={siteInfo?.icon}/>
</Link>
{/* <div>{siteConfig('TITLE')}</div> */}
</div>
);
}