1
1
import React from "react" ;
2
2
import dynamic from "next/dynamic" ;
3
+ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" ;
4
+ import { faGithub , faProductHunt , faTwitter } from '@fortawesome/free-brands-svg-icons' ;
3
5
4
6
const ThemeToggle = dynamic ( ( ) => import ( "./ThemeToggle" ) , {
5
7
ssr : false ,
@@ -10,38 +12,43 @@ const Footer = () => {
10
12
return (
11
13
< >
12
14
< div className = "footer" role = "footer" >
13
- < footer className = "copyright" >
14
- < div className = "footer-question" >
15
- < h4 >
16
- Made by{ " " }
17
- < a
18
- href = "https://swapnilsparsh.github.io"
19
- target = "_blank"
20
- rel = "noreferrer"
21
- aria-label = "Follow Swapnil Srivastava on Github"
15
+
16
+ < div style = { { display : 'flex' , justifyContent : 'space-between' , alignContent : 'center' , margin : 'auto 5rem' , padding : '1rem 0rem' } } >
17
+ < p style = { { color : "white" } } aria-label = "Copyright by DevEmpire" > Copyright © DevEmpire { year } .</ p >
18
+ < p >
19
+ Made by{ " " }
20
+ < a
21
+ href = "https://swapnilsparsh.github.io"
22
+ target = "_blank"
23
+ rel = "noreferrer"
24
+ aria-label = "Follow Swapnil Srivastava on Github"
22
25
// title="Github (External Link)"
23
- >
24
- { " " }
25
- Swapnil Srivastava
26
- </ a > { " " }
26
+ style = { { color : 'white' } } >
27
+ { " " }
28
+ Swapnil
29
+ </ a > { " " }
27
30
28
- and
31
+ &
29
32
30
- < a
31
- href = "https://jatiinyadav.github.io"
32
- target = "_blank"
33
- rel = "noreferrer"
34
- aria-label = "Follow Jatin Yadav on Github"
33
+ < a
34
+ href = "https://jatiinyadav.github.io"
35
+ target = "_blank"
36
+ rel = "noreferrer"
37
+ aria-label = "Follow Jatin Yadav on Github"
35
38
// title="Github (External Link)"
36
- >
37
- { " " }
38
- Jatin Yadav
39
- </ a >
40
- </ h4 >
41
- < br />
42
- < p style = { { color : "white" } } aria-label = "Copyright by DevEmpire" > Copyright © { year } DevEmpire</ p >
39
+ style = { { color : 'white' } } >
40
+ { " " }
41
+ Jatin
42
+ </ a >
43
+ </ p >
44
+ < div style = { { display : 'flex' , justifyContent : 'space-between' , alignContent : 'center' , gap : '1rem' , cursor : 'pointer' , color : 'white' } } >
45
+ < p style = { { marginTop : '.1rem' } } > SUPPORT</ p >
46
+ < p style = { { marginTop : '.1rem' } } > |</ p >
47
+ < a href = "https://github.com/swapnilsparsh/DevEmpire" target = "_blank" > < FontAwesomeIcon icon = { faGithub } size = "xl" inverse /> </ a >
48
+ < a href = "https://www.producthunt.com/products/developer-empire?utm_source=badge-featured& utm_medium = badge #developer- empire " target = "_blank" > < FontAwesomeIcon icon = { faProductHunt } size = "xl" inverse /> </ a >
49
+ < a href = "https://twitter.com/intent/tweet?text=Check%20out%20this%20awesome%20website%20having%20a%20collection%20of%20all%20the%20campus%20ambassador%20and%20fellowship%20programs& url = https ://devempire.netlify.app&via=swapnilsparsh" target="_blank"><FontAwesomeIcon icon={faTwitter} size="xl" inverse /></a>
43
50
</div >
44
- </ footer >
51
+ </ div >
45
52
46
53
</ div >
47
54
</ >
0 commit comments