2
2
import { Separator } from "./ui/separator" ;
3
3
import ccLogo from "../assets/codechef_logo.svg" ;
4
4
import Image from "next/image" ;
5
- import { Instagram , Linkedin , Youtube } from "lucide-react" ;
5
+ import { Instagram , Linkedin , Youtube , Github } from "lucide-react" ;
6
6
import meta_icon from "../assets/meta_icon.svg" ;
7
7
import x_twitter_icon from "../assets/x_twitter_icon.svg" ;
8
8
import meta_icon_dark from "../assets/meta_icon_dark.svg" ;
@@ -24,21 +24,18 @@ export default function Footer() {
24
24
return (
25
25
< div className = "mx-auto flex flex-col items-center justify-between gap-y-12 pt-12 md:pt-8 lg:w-full lg:flex-row lg:justify-around lg:px-12 mb-4" >
26
26
< div className = "flex items-center" >
27
- < Link
28
- href = "/"
29
- className = "jost bg-gradient-to-r from-[#562EE7] to-[rgba(116,128,255,0.8)] bg-clip-text text-center text-3xl font-bold text-transparent dark:from-[#562EE7] dark:to-[#FFC6E8] md:w-[60%] md:text-6xl"
30
- >
27
+ < h1 className = "jost bg-gradient-to-r from-[#562EE7] to-[rgba(116,128,255,0.8)] bg-clip-text text-center text-3xl font-bold text-transparent lg:text-5xl 2xl:text-6xl dark:from-[#562EE7] dark:to-[#FFC6E8]" >
31
28
Papers
32
- </ Link >
29
+ </ h1 >
33
30
< Separator orientation = "vertical" className = "mx-3 h-full min-h-20" />
34
- < div className = "flex items-center gap-2 " >
31
+ < div className = "flex items-center" >
35
32
< Image
36
33
src = { ccLogo as HTMLImageElement }
37
34
alt = "codechef-logo"
38
35
height = { 70 }
39
36
width = { 70 }
40
37
/>
41
- < p className = "jost text-2xl font-bold lg:text-4xl whitespace-nowrap " > CodeChef-VIT</ p >
38
+ < p className = "jost text-2xl font-bold lg:text-4xl" > CodeChef-VIT</ p >
42
39
</ div >
43
40
</ div >
44
41
@@ -53,6 +50,9 @@ export default function Footer() {
53
50
< Link href = "https://www.youtube.com/@CodeChefVIT" >
54
51
< Youtube />
55
52
</ Link >
53
+ < Link href = "https://github.com/CodeChefVIT" >
54
+ < Github />
55
+ </ Link >
56
56
< Link href = "https://www.facebook.com/codechefvit/" >
57
57
< Image
58
58
src = { isDarkMode ? meta_icon_dark : meta_icon }
0 commit comments