-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.js
103 lines (101 loc) · 3.38 KB
/
Footer.js
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
"use client";
import React, { useContext } from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import {
faLinkedin,
faDiscord,
faGithub,
} from "@fortawesome/free-brands-svg-icons";
import { Context } from "@context/store";
import { usePathname } from "next/navigation";
function Footer() {
const pathname = usePathname(); // Get current path
const isAdmin = pathname && pathname.startsWith("/admin"); // Check if path starts with '/admin'
const isProfile = pathname && pathname.startsWith("/profile"); // Check if path starts with '/admin'
const isDevopsForum = pathname && pathname.startsWith("/devopsforum");
const isCreateForum = pathname && pathname.startsWith("/createforum");
const isPremium = pathname && pathname.startsWith("/infrawise");
let { theme } = useContext(Context);
return (
<div
className={`${theme ? "bg-gray-100" : "bg-[#1e1d1d]"} ${
isAdmin || isProfile || isDevopsForum || isCreateForum ||isPremium? "hidden" : "block"
} pt-12 pb-6 flex flex-col items-center justify-center text-center w-full transition-colors duration-500`}
>
{/* Social media icons */}
<div className="flex items-center justify-center gap-5 w-full mb-0">
<a
href="https://www.linkedin.com/company/HelpOps-Hub/"
target="_blank"
rel="noopener noreferrer"
>
<FontAwesomeIcon
icon={faLinkedin}
className={`${
theme
? "text-black hover:text-gray-300 hover:shadow-lg"
: "text-white"
} p-1 rounded-full text-xl transition-colors duration-500`}
/>
</a>
<a
href="https://discord.gg/UWTrRhqywt"
target="_blank"
rel="noopener noreferrer"
>
<FontAwesomeIcon
icon={faDiscord}
className={`${
theme
? "text-black hover:text-gray-300 hover:shadow-lg"
: "text-white"
} p-1 rounded-full text-xl transition-colors duration-500`}
/>
</a>
<a
href="https://github.com/mdazfar2/HelpOps-Hub/"
target="_blank"
rel="noopener noreferrer"
>
<FontAwesomeIcon
icon={faGithub}
className={`${
theme
? "text-black hover:text-gray-300 hover:shadow-lg"
: "text-white"
} p-1 rounded-full text-xl transition-colors duration-500`}
/>
</a>
</div>
{/* Copyright notice */}
<p
className={`${
theme ? "text-black" : "text-gray-100"
} font-sans text-xs py-2 font-normal mb-0 transition-colors duration-500`}
>
© {new Date().getFullYear()} HelpOps-Hub | MIT License
</p>
{/* Developer and contributors */}
<p
className={`${
theme ? "text-black" : "text-gray-100"
} font-sans text-xs font-normal mb-0 transition-colors duration-500`}
>
Developed by{" "}
<a
href="https://github.com/mdazfar2"
target="_blank"
rel="noopener noreferrer"
className="underline"
>
Azfar Alam
</a>{" "}
&{" "}
<a className="underline" rel="noopener noreferrer" href="/team">
Open Source Community
</a>
</p>
</div>
);
}
export default Footer;