Fix logo image paths to use public/images directory

Header logo and page loader were referencing a non-existent /loyaly_php/assets/images path; point them at the actual public/images assets.
This commit is contained in:
R-Bharathraj
2026-07-01 11:25:29 +05:30
parent bf9289ca7b
commit 0498f2cd0e
3 changed files with 3 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
public/images/loyalyai.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@@ -71,7 +71,7 @@ export default function Header() {
> >
<div className="page-loader"> <div className="page-loader">
<Image <Image
src="/loyaly_php/assets/images/loyalyai-logo.png" src="/images/loyalyai-logo.png"
alt="Loyaly.AI" alt="Loyaly.AI"
width={100} width={100}
height={100} height={100}
@@ -120,7 +120,7 @@ export default function Header() {
{/* Panel header */} {/* Panel header */}
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}> <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<Image <Image
src="/loyaly_php/assets/images/loyalyai.png" src="/images/loyalyai.png"
alt="Loyaly.AI" alt="Loyaly.AI"
width={140} width={140}
height={40} height={40}
@@ -247,7 +247,7 @@ export default function Header() {
<div style={{ flexShrink: 0, flex: 1, minWidth: 120 }}> <div style={{ flexShrink: 0, flex: 1, minWidth: 120 }}>
<Link href="/" aria-label="Loyaly.AI home" style={{ display: 'inline-flex', alignItems: 'center', textDecoration: 'none' }}> <Link href="/" aria-label="Loyaly.AI home" style={{ display: 'inline-flex', alignItems: 'center', textDecoration: 'none' }}>
<Image <Image
src="/loyaly_php/assets/images/loyalyai.png" src="/images/loyalyai.png"
alt="Loyaly.AI" alt="Loyaly.AI"
width={160} width={160}
height={48} height={48}