File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,12 @@ export default async function HomePage() {
20
20
const today = Date . now ( )
21
21
return (
22
22
< >
23
- < NavigationMenu
24
- aside = { today < fr_end ? < CompanyRegistrationButton /> : "" }
25
- />
23
+ { today < fr_end ? (
24
+ < NavigationMenu />
25
+ ) : (
26
+ < NavigationMenu aside = { < CompanyRegistrationButton /> } />
27
+ ) }
28
+
26
29
< Page . Background className = "" >
27
30
< div className = "mb-5 flex w-full flex-1 justify-center " >
28
31
< div className = "mx-5 w-full max-w-[800px] pt-3 md:mx-10 md:pt-6" >
@@ -106,9 +109,9 @@ export default async function HomePage() {
106
109
src = {
107
110
exhibitor . name === "Nordea"
108
111
? "/exhibitorLogo/NordeaBankLogo.png"
109
- : ( exhibitor . logo_squared ??
112
+ : exhibitor . logo_squared ??
110
113
exhibitor . logo_freesize ??
111
- "" )
114
+ ""
112
115
}
113
116
alt = { exhibitor . name }
114
117
width = { 600 }
You can’t perform that action at this time.
0 commit comments