Skip to content

Commit 3425abe

Browse files
committed
Nordea Bank logo added
1 parent b980792 commit 3425abe

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
11.6 KB
Loading

src/app/page.tsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,17 @@ export default async function HomePage() {
9696
<div
9797
key={exhibitor.id}
9898
className="flex h-40 w-40 items-center justify-center rounded-lg">
99-
{(exhibitor.logo_squared || exhibitor.logo_freesize) && (
99+
{(exhibitor.logo_squared ||
100+
exhibitor.logo_freesize ||
101+
exhibitor.name === "Nordea") && (
100102
<Image
101103
className="object-contain"
102104
src={
103-
exhibitor.logo_squared ??
104-
exhibitor.logo_freesize ??
105-
""
105+
exhibitor.name === "Nordea"
106+
? "/exhibitorLogo/NordeaBankLogo.png"
107+
: (exhibitor.logo_squared ??
108+
exhibitor.logo_freesize ??
109+
"")
106110
}
107111
alt={exhibitor.name}
108112
width={600}

0 commit comments

Comments
 (0)