Skip to content

Commit 0ca556a

Browse files
authored
Merge pull request #246 from thauska/master
[update]: footer with new design
2 parents cb124b7 + 27b01cc commit 0ca556a

File tree

3 files changed

+16898
-11
lines changed

3 files changed

+16898
-11
lines changed

src/components/footer.js

Lines changed: 69 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,85 @@
11
import React from "react"
22
import links from "../constants/page-links"
3+
import logo from "../images/mdg.png"
4+
import discord from "../images/Discord-Logo.png"
35
import { Link } from "gatsby"
46
const Footer = () => {
57
return (
68
<div className="bg-gray-100 p-4 flex flex-col justify-center items-center shadow-inner mt-2">
7-
<div className="w-full flex justify-evenly items-center py-2 text-orange-500">
9+
<div className="w-full flex justify-evenly py-2">
10+
<div className="mr-6">
11+
<h1 className="text-base font-bold font-title sm:text-2xl flex-col items-end">
12+
<img
13+
src={logo}
14+
className="h-24"
15+
alt="github profile markdown generator logo"
16+
/>
17+
GitHub Profile README Generator
18+
</h1>
19+
</div>
820
<div>
9-
<Link to={links.about} activeStyle={{ color: "#002ead" }}>
10-
About
11-
</Link>
21+
<div className="mb-2 font-bold font-medium font-title">
22+
<strong>Pages</strong>
23+
</div>
24+
<div>
25+
<Link to={links.addons} activeStyle={{ color: "#002ead" }}>
26+
Addons
27+
</Link>
28+
</div>
29+
<div>
30+
<Link to={links.support} activeStyle={{ color: "#002ead" }}>
31+
Support
32+
</Link>
33+
</div>
34+
<div>
35+
<Link to={links.about} activeStyle={{ color: "#002ead" }}>
36+
About
37+
</Link>
38+
</div>
1239
</div>
1340
<div>
14-
<Link to={links.addons} activeStyle={{ color: "#002ead" }}>
15-
Addons
16-
</Link>
41+
<div className="mb-2 font-bold font-medium font-title">
42+
<strong>More</strong>
43+
</div>
44+
<div>
45+
<a
46+
href="https://github.com/rahuldkjain/github-profile-readme-generator"
47+
aria-label="Github rahuldkjain/github-profile-readme-generator"
48+
target="blank"
49+
>
50+
Github
51+
</a>
52+
</div>
53+
<div>
54+
<a
55+
href="https://github.com/rahuldkjain/github-profile-readme-generator/releases"
56+
aria-label="Releases on Github rahuldkjain/github-profile-readme-generator"
57+
target="blank"
58+
>
59+
Releases
60+
</a>
61+
</div>
1762
</div>
1863
<div>
19-
<Link to={links.support} activeStyle={{ color: "#002ead" }}>
20-
Support
21-
</Link>
64+
<div className="mb-2 font-bold font-medium font-title">
65+
<strong>Community</strong>
66+
</div>
67+
<div>
68+
<a
69+
href="https://discord.gg/HHMs7Eg"
70+
aria-label="Discord of the community"
71+
target="blank"
72+
>
73+
<img
74+
src={discord}
75+
className="h-12"
76+
alt="Discord of the community"
77+
/>
78+
</a>
79+
</div>
2280
</div>
2381
</div>
24-
<div className="py-2">
82+
<div className="py-2 mt-2">
2583
Developed in India{" "}
2684
<span role="img" aria-label="india">
2785
{" "}

src/images/Discord-Logo.png

4.03 KB
Loading

0 commit comments

Comments
 (0)