@@ -5,31 +5,34 @@ import { cn } from "@/lib/utils"
5
5
const Footer = ( ) => {
6
6
return (
7
7
< footer className = { cn (
8
- "py-16 text-gray-500 dark:text-gray-400 flex flex-col items-center justify-center sm:flex-row-reverse sm:justify-between" ,
9
- "mx-auto max-w-full px-4 sm:px-12 md:px-16 lg:max-w-5xl xl:max-w-6xl 2xl:max-w-7xl"
8
+ "py-12 text-gray-500 dark:text-gray-400"
10
9
) } >
11
- < div className = "flex justify-center md:justify-start space-x-4" >
12
- < a href = { personalDetails . githubLink } target = "_blank" rel = "noopener noreferrer" aria-label = "GitHub"
13
- className = "inline-flex items-center hover:underline hover:underline-offset-2 text-pink-500"
14
- >
15
- github < ArrowUpRight className = "w-4 h-4 md:w-5 md:h-5" />
16
- </ a >
17
- < a href = { personalDetails . linkedinLink } target = "_blank" rel = "noopener noreferrer" aria-label = "LinkedIn"
18
- className = "inline-flex items-center hover:underline hover:underline-offset-2 text-thunderbird-600"
19
- >
20
- linkedin < ArrowUpRight className = "w-4 h-4 md:w-5 md:h-5" />
21
- </ a >
22
- < a href = { `mailto:` + personalDetails . email } aria-label = "Email"
23
- className = "inline-flex items-center hover:underline hover:underline-offset-2 text-azure-radiance-600" // text-orange-500"
24
- >
25
- email < ArrowUpRight className = "w-4 h-4 md:w-5 md:h-5" />
26
- </ a >
27
- </ div >
28
- < div className = "mt-6 sm:mt-0" >
29
- © 2024 { new URL ( detailsForMetadata . baseUrl ) . hostname }
10
+ < div className = { cn (
11
+ "flex flex-col items-center justify-center sm:flex-row-reverse sm:justify-between" ,
12
+ "mx-auto max-w-full px-4 sm:px-12 md:px-16 lg:max-w-5xl xl:max-w-6xl 2xl:max-w-7xl"
13
+ ) } >
14
+ < div className = "flex justify-center md:justify-start space-x-4" >
15
+ < a href = { personalDetails . githubLink } target = "_blank" rel = "noopener noreferrer" aria-label = "GitHub"
16
+ className = "inline-flex items-center hover:underline hover:underline-offset-2 text-pink-500"
17
+ >
18
+ github < ArrowUpRight className = "w-4 h-4 md:w-5 md:h-5" />
19
+ </ a >
20
+ < a href = { personalDetails . linkedinLink } target = "_blank" rel = "noopener noreferrer" aria-label = "LinkedIn"
21
+ className = "inline-flex items-center hover:underline hover:underline-offset-2 text-thunderbird-600"
22
+ >
23
+ linkedin < ArrowUpRight className = "w-4 h-4 md:w-5 md:h-5" />
24
+ </ a >
25
+ < a href = { `mailto:` + personalDetails . email } aria-label = "Email"
26
+ className = "inline-flex items-center hover:underline hover:underline-offset-2 text-azure-radiance-600" // text-orange-500"
27
+ >
28
+ email < ArrowUpRight className = "w-4 h-4 md:w-5 md:h-5" />
29
+ </ a >
30
+ </ div >
31
+ < div className = "mt-6 sm:mt-0" >
32
+ © 2024 { new URL ( detailsForMetadata . baseUrl ) . hostname }
33
+ </ div >
30
34
</ div >
31
35
</ footer >
32
-
33
36
)
34
37
}
35
38
0 commit comments