forked from Heroic-Games-Launcher/heroic-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavbar.tsx
108 lines (106 loc) · 2.68 KB
/
Navbar.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* eslint-disable @next/next/no-img-element */
import Link from 'next/link'
import React from 'react'
const logo = require('../assets/logo.png?webp')
import {
faTwitter,
faGithub,
faDiscord,
faMastodon
} from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
export default function Navbar() {
return (
<nav className="container-fluid">
<ul>
<li>
<Link href="/" passHref>
<span className="contrast link">
<img
src={logo}
title="Heroic Games Launcher"
alt="Heroic Games Launcher"
height="32px"
width="32px"
/>
<strong>Heroic Games Launcher</strong>
</span>
</Link>
</li>
</ul>
<div>
<ul>
<li>
<a
rel="me"
title="Heroic Mastodon Page"
href="https://mastodon.social/@heroiclauncher"
>
<FontAwesomeIcon
icon={faMastodon}
height={22}
width={22}
color={'#00000'}
/>
</a>
</li>
<li>
<a
href="https://twitter.com/HeroicLauncher"
title="Heroic Twitter Page"
>
<FontAwesomeIcon
icon={faTwitter}
height={22}
width={22}
color={'#00000'}
/>
</a>
</li>
<li>
<a
href="https://github.com/Heroic-Games-Launcher"
title="Heroic GitHub Page"
>
<FontAwesomeIcon
icon={faGithub}
height={22}
width={22}
color={'#00000'}
/>
</a>
</li>
<li>
<a
href="https://discord.com/invite/rHJ2uqdquK"
title="Heroic Discord Server"
>
<FontAwesomeIcon
icon={faDiscord}
height={22}
width={22}
color={'#00000'}
/>
</a>
</li>
</ul>
<ul>
<li>
<Link href="/faq">FAQ</Link>
</li>
<li>
<a href="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/wiki">
Documentation
</a>
</li>
<li>
<Link href="/donate">Support Us</Link>
</li>
<li>
<Link href="/cla">CLA</Link>
</li>
</ul>
</div>
</nav>
)
}