@@ -6,37 +6,78 @@ import meta_icon from "../assets/meta_icon.svg";
66import x_twitter_icon from "../assets/x_twitter_icon.svg" ;
77import meta_icon_dark from "../assets/meta_icon_dark.svg" ;
88import x_twitter_icon_dark from "../assets/x_twitter_icon_dark.svg" ;
9+ import Link from "next/link" ;
910
1011export default function Footer ( ) {
1112 return (
12- < div className = "flex md: flex-row flex-col gap-y-12 md :w-full md:px-12 mx-auto items-center justify-between pt -12" >
13+ < div className = "mx-auto flex flex-col items-center justify-between gap-y-12 pt-12 lg :w-full lg:flex-row lg:px -12" >
1314 < div className = "flex items-center" >
14- < h1 className = "jost bg-gradient-to-r from-[#562EE7] to-[#FFC6E8] bg-clip-text text-center text-3xl md:text-5xl font-bold text-transparent" >
15+ < h1 className = "jost bg-gradient-to-r from-[#562EE7] to-[#FFC6E8] bg-clip-text text-center text-3xl font-bold text-transparent lg:text-5xl " >
1516 Papers
1617 </ h1 >
17- < Separator orientation = "vertical" className = "min-h-20 h-full mx-3 " />
18+ < Separator orientation = "vertical" className = "mx-3 h-full min-h-20 " />
1819 < div className = "flex items-center" >
1920 < Image
2021 src = { ccLogo as HTMLImageElement }
2122 alt = "codechef-logo"
2223 height = { 70 }
2324 width = { 70 }
2425 />
25- < p className = "jost text-2xl md :text-4xl font-bold " > CodeChef-VIT</ p >
26+ < p className = "jost text-2xl font-bold lg :text-4xl" > CodeChef-VIT</ p >
2627 </ div >
2728 </ div >
2829
29- < p className = "text-xl md:block hidden" > Made with Love By Codechef-VIT</ p >
30- < div className = "flex gap-x-8 items-center" >
31- < Instagram />
32- < Linkedin />
33- < Youtube />
34- < Image src = { meta_icon } alt = "meta-icon" height = { 24 } width = { 24 } className = "dark:hidden" />
35- < Image src = { x_twitter_icon } alt = "x_twitter_icon" className = "dark:hidden" height = { 24 } width = { 24 } />
36- < Image src = { meta_icon_dark } alt = "meta-icon" className = "hidden dark:block" height = { 24 } width = { 24 } />
37- < Image src = { x_twitter_icon_dark } alt = "x_twitter_icon" className = "hidden dark:block mb-2" height = { 24 } width = { 24 } />
30+ < p className = "hidden text-xl lg:block" > Made with Love By Codechef-VIT</ p >
31+ < div className = "flex items-center gap-x-8" >
32+ < Link href = "https://www.instagram.com/codechefvit/" >
33+ < Instagram />
34+ </ Link >
35+ < Link href = "https://www.linkedin.com/company/codechefvit/" >
36+ < Linkedin />
37+ </ Link >
38+ < Link href = "https://www.youtube.com/@CodeChefVIT" >
39+ < Youtube />
40+ </ Link >
41+ < Link href = "https://www.facebook.com/codechefvit/" >
42+ < Image
43+ src = { meta_icon }
44+ alt = "meta-icon"
45+ height = { 24 }
46+ width = { 24 }
47+ className = "dark:hidden"
48+ />
49+ </ Link >
50+
51+ < Link href = "https://www.facebook.com/codechefvit/" >
52+ < Image
53+ src = { meta_icon_dark }
54+ alt = "meta-icon"
55+ className = "hidden dark:block"
56+ height = { 24 }
57+ width = { 24 }
58+ />
59+ </ Link >
60+ < Link href = "https://x.com/codechefvit" >
61+ < Image
62+ src = { x_twitter_icon }
63+ alt = "x_twitter_icon"
64+ className = "dark:hidden"
65+ height = { 24 }
66+ width = { 24 }
67+ />
68+ </ Link >
69+
70+ < Link href = "https://x.com/codechefvit" >
71+ < Image
72+ src = { x_twitter_icon_dark }
73+ alt = "x_twitter_icon"
74+ className = "mb-2 hidden dark:block"
75+ height = { 24 }
76+ width = { 24 }
77+ />
78+ </ Link >
3879 </ div >
39- < p className = "text-xl block md :hidden" > Made with Love By Codechef-VIT</ p >
80+ < p className = "block text-xl lg :hidden" > Made with Love By Codechef-VIT</ p >
4081 </ div >
4182 ) ;
4283}
0 commit comments