File tree 3 files changed +43
-6
lines changed
3 files changed +43
-6
lines changed Original file line number Diff line number Diff line change
1
+ import GitHub_Icon from '@/assets/svg/github.svg' ;
2
+ import Discord_Icon from '@/assets/svg/discor.svg' ;
1
3
function footer ( ) {
2
4
const newDate = new Date ( ) ;
3
5
const year = newDate . getFullYear ( ) ;
4
6
5
7
return (
6
- < footer className = "flex min-h-[6vh] flex-col items-center bg-zinc-900 py-2 text-center text-white sm:flex-row sm:justify-between sm:py-3" >
7
- < section className = "text-base sm:pl-4 sm:pl-8 lg:pl-16" > WanderLust</ section >
8
- < section className = "text-base sm:pr-16 sm:pr-4 lg:pr-24" >
9
- < span className = "mr-2" > ©</ span >
10
- { year } All Rights Reserved
11
- </ section >
8
+ < footer className = "flex min-h-[6vh] flex-col items-center bg-zinc-900 py-3 pt-10 text-center text-white sm:flex-row sm:justify-center sm:py-3" >
9
+ < div className = "mb-8 mt-8" >
10
+ < section className = "flex items-center text-xs sm:text-sm" >
11
+ Find an issue with this page?{ ' ' }
12
+ < span className = "pl-1 text-blue-500" >
13
+ < a href = "https://github.com/krishnaacharyaa/wanderlust" > Fix it on GitHub</ a >
14
+ </ span >
15
+ < span >
16
+ < a href = "https://github.com/krishnaacharyaa/wanderlust" >
17
+ < img src = { GitHub_Icon } className = "h-7 w-10" />
18
+ </ a >
19
+ </ span >
20
+ </ section >
21
+
22
+ < section className = "flex items-center pl-8 text-xs sm:text-sm" >
23
+ Need help? Connect with us on
24
+ < span >
25
+ < a href = "https://discord.com/invite/FEKasAdCrG" >
26
+ < img src = { Discord_Icon } className = "h-6 w-10" />
27
+ </ a >
28
+ </ span >
29
+ </ section >
30
+
31
+ < section className = "mt-4 flex items-center pl-16 text-xs" >
32
+ < span className = "mr-2" > ©</ span >
33
+ { year } All Rights Reserved
34
+ </ section >
35
+ </ div >
12
36
</ footer >
13
37
) ;
14
38
}
You can’t perform that action at this time.
0 commit comments