Skip to content

Commit 05436bc

Browse files
Merge pull request #34 from CodeChefVIT/staging
Staging
2 parents 755cdb7 + f61ccc6 commit 05436bc

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

src/assets/meta_icon.svg

Lines changed: 4 additions & 1 deletion
Loading

src/assets/x_twitter_icon.svg

Lines changed: 4 additions & 1 deletion
Loading

src/components/Footer.tsx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,25 @@ export default function Footer() {
2424
return (
2525
<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">
2626
<div className="flex items-center">
27-
<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">
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+
>
2831
Papers
29-
</h1>
32+
</Link>
3033
<Separator orientation="vertical" className="mx-3 h-full min-h-20" />
31-
<div className="flex items-center">
34+
<div className="flex items-center gap-2">
3235
<Image
3336
src={ccLogo as HTMLImageElement}
3437
alt="codechef-logo"
3538
height={70}
3639
width={70}
3740
/>
38-
<p className="jost text-2xl font-bold lg:text-4xl">CodeChef-VIT</p>
41+
<p className="jost text-2xl font-bold lg:text-4xl whitespace-nowrap">CodeChef-VIT</p>
3942
</div>
4043
</div>
4144

42-
<p className="hidden text-xl lg:block">Made with Love By Codechef-VIT</p>
45+
<p className="hidden text-xl lg:block">Made with 💜 By Codechef-VIT</p>
4346
<div className="flex items-center gap-x-8">
4447
<Link href="https://www.instagram.com/codechefvit/">
4548
<Instagram />
@@ -67,7 +70,7 @@ export default function Footer() {
6770
/>
6871
</Link>
6972
</div>
70-
<p className="block text-xl lg:hidden">Made with Love By Codechef-VIT</p>
73+
<p className="block text-xl lg:hidden">Made with 💜 By Codechef-VIT</p>
7174
</div>
7275
);
7376
}

src/components/Navbar.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Link from "next/link";
77

88
function Navbar() {
99
return (
10-
<div className="flex items-center justify-between px-2 gap-x-3 py-6 md:px-12">
10+
<div className="flex items-center justify-between gap-x-3 px-2 py-6 md:px-12">
1111
<div className="hidden w-[20%] md:block">
1212
<a href="https://www.codechefvit.com/" className="inline-block">
1313
<Image
@@ -19,7 +19,10 @@ function Navbar() {
1919
</a>
2020
</div>
2121
<div>
22-
<Link href="/" className="jost bg-gradient-to-r from-[#562EE7] to-[#FFC6E8] bg-clip-text text-center text-5xl font-bold text-transparent md:w-[60%] md:text-6xl">
22+
<Link
23+
href="/"
24+
className="jost bg-gradient-to-r from-[#562EE7] to-[rgba(116,128,255,0.8)] bg-clip-text text-center text-5xl font-bold text-transparent dark:from-[#562EE7] dark:to-[#FFC6E8] md:w-[60%] md:text-6xl"
25+
>
2326
Papers
2427
</Link>
2528
</div>
@@ -31,7 +34,7 @@ function Navbar() {
3134
<Link href="/upload">
3235
<Button
3336
variant="outline"
34-
className="rounded-full px-6 py-4 text-xs md:text-sm mt-2 md:mt-0"
37+
className="mt-2 rounded-full px-6 py-4 text-xs md:mt-0 md:text-sm"
3538
>
3639
<ArrowUpToLine />
3740
<span>UPLOAD PAPERS</span>

0 commit comments

Comments
 (0)