Skip to content

Commit 9f64f5d

Browse files
fix(app): improve Footer html structure (#449)
Improve Footer html structure
1 parent 760aeab commit 9f64f5d

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

apps/app/src/components/Footer.tsx

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,28 @@ import { Container } from "./Container";
44
export const Footer = () => (
55
<footer className="bg-primary">
66
<Container className="flex items-center justify-center py-5 sm:justify-end">
7-
<nav className="flex flex-wrap justify-center gap-y-4 gap-x-7 text-sm text-white">
8-
<Link href="/about">Jak korzystać?</Link>
9-
<Link href="/regulations">Regulamin</Link>
10-
<Link href="/authors">Autorzy</Link>
11-
<a href="https://www.facebook.com/DevFAQ" target="_blank" rel="noreferrer">
12-
Facebook
13-
</a>
14-
<a href="https://typeofweb.com" target="_blank" rel="noreferrer">
15-
Type of Web
16-
</a>
7+
<nav className="flex text-sm text-white">
8+
<ul className="flex list-none flex-wrap justify-center gap-y-4 gap-x-7">
9+
<li>
10+
<Link href="/about">Jak korzystać?</Link>
11+
</li>
12+
<li>
13+
<Link href="/regulations">Regulamin</Link>
14+
</li>
15+
<li>
16+
<Link href="/authors">Autorzy</Link>
17+
</li>
18+
<li>
19+
<a href="https://www.facebook.com/DevFAQ" target="_blank" rel="noreferrer">
20+
Facebook
21+
</a>
22+
</li>
23+
<li>
24+
<a href="https://typeofweb.com" target="_blank" rel="noreferrer">
25+
Type of Web
26+
</a>
27+
</li>
28+
</ul>
1729
</nav>
1830
</Container>
1931
</footer>

0 commit comments

Comments
 (0)