File tree 3 files changed +11
-4
lines changed 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const gitVersion = import.meta.env.GIT_VERSION;
15
15
<div >
16
16
<nav class =" mb-12" >
17
17
<h6 class =" font-bold text-xl mb-6" >Quicklinks</h6 >
18
-
18
+ < ul >
19
19
{
20
20
links .footer .map ((item ) => (
21
21
<li class = " list-none" >
@@ -29,14 +29,15 @@ const gitVersion = import.meta.env.GIT_VERSION;
29
29
</li >
30
30
))
31
31
}
32
+ </ul >
32
33
</nav >
33
34
</div >
34
35
35
36
<article
36
37
class =" flex flex-col lg:flex-row self-center gap-8 lg:gap-12 justify-end"
37
38
>
38
39
<div >
39
- <EPSLogo className =" max-w-[200px] h-auto w-full" />
40
+ <EPSLogo className =" max-w-[100px] lg:max-w-[ 200px] h-auto w-full" />
40
41
</div >
41
42
<div >
42
43
<address class =" not-italic mb-4" >
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ const { href, variant = "standard" } = Astro.props;
18
18
" bg-red" : variant === " live" ,
19
19
},
20
20
]}
21
- href ={ href }
21
+
22
+ role =" button"
23
+ href ={ href || " #" }
22
24
>
23
25
<slot />
24
26
</a >
Original file line number Diff line number Diff line change @@ -27,7 +27,10 @@ export const NavItems = ({ items, inverted = false }: Props) => {
27
27
) }
28
28
>
29
29
< a
30
- href = { item . path }
30
+ href = { item . path || "#" }
31
+ aria-haspopup = "true"
32
+ role = "button"
33
+ rel = "nofollow"
31
34
className = { clsx (
32
35
"font-bold inline-block w-full text-3xl xl:text-base p-5 text-center" ,
33
36
"xl:text-left xl:p-2 xl:px-5" ,
@@ -59,6 +62,7 @@ export const NavItems = ({ items, inverted = false }: Props) => {
59
62
>
60
63
< a
61
64
href = { subItem . path || "#" }
65
+ role = "button"
62
66
className = { clsx (
63
67
"block w-full font-bold text-center" ,
64
68
"xl:text-left mb-[2px] p-2 xl:px-5"
You can’t perform that action at this time.
0 commit comments