|
1 | 1 | import React from "react"
|
2 | 2 | import links from "../constants/page-links"
|
| 3 | +import logo from "../images/mdg.png" |
| 4 | +import discord from "../images/Discord-Logo.png" |
3 | 5 | import { Link } from "gatsby"
|
4 | 6 | const Footer = () => {
|
5 | 7 | return (
|
6 | 8 | <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> |
8 | 20 | <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> |
12 | 39 | </div>
|
13 | 40 | <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> |
17 | 62 | </div>
|
18 | 63 | <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> |
22 | 80 | </div>
|
23 | 81 | </div>
|
24 |
| - <div className="py-2"> |
| 82 | + <div className="py-2 mt-2"> |
25 | 83 | Developed in India{" "}
|
26 | 84 | <span role="img" aria-label="india">
|
27 | 85 | {" "}
|
|
0 commit comments