🐛 fix(api): Server and order

This commit is contained in:
web@ppanel
2024-11-26 14:58:23 +07:00
parent 229d36bfec
commit 255bd8219c
17 changed files with 49 additions and 34 deletions
+3 -1
View File
@@ -14,7 +14,9 @@ export default function Header() {
const { site } = common;
const Logo = (
<Link href='/' className='flex items-center gap-2 text-lg font-bold'>
{site.site_logo && <Image src={site.site_logo} width={48} height={48} alt='logo' />}
{site.site_logo && (
<Image src={site.site_logo} width={48} height={48} alt='logo' unoptimized />
)}
<span>{site.site_name}</span>
</Link>
);