From b89e3edad913b95135750266981eccd463159723 Mon Sep 17 00:00:00 2001 From: yepMizu Date: Thu, 23 Apr 2026 23:32:09 +0545 Subject: [PATCH 1/8] Added Devfolio button/ Removed Pre-Registration button --- frontend/src/app/(pages)/SponsorsPage.tsx | 4 ++-- frontend/src/app/sections/home/Hero.tsx | 22 +++++++++++----------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/frontend/src/app/(pages)/SponsorsPage.tsx b/frontend/src/app/(pages)/SponsorsPage.tsx index a0bdd74..cc4a29d 100644 --- a/frontend/src/app/(pages)/SponsorsPage.tsx +++ b/frontend/src/app/(pages)/SponsorsPage.tsx @@ -8,7 +8,7 @@ export default function SponsorPage(): ReactElement { return ( <> - {/* +
- */} + ); diff --git a/frontend/src/app/sections/home/Hero.tsx b/frontend/src/app/sections/home/Hero.tsx index 7bd4a60..b52a0ab 100644 --- a/frontend/src/app/sections/home/Hero.tsx +++ b/frontend/src/app/sections/home/Hero.tsx @@ -1,9 +1,9 @@ "use client"; import DiscordHero from "@/app/assets/icons/DiscordHero"; -import Devfolio from "@/app/assets/icons/Devfolio"; +import Devfolio from "@/app/assets/icons/Devfolio"; import styles from "./styles.module.css"; import DeerHack26Logo from "@/app/assets/icons/Deerhack26"; -import { cabinetBold,cabinetExtraBold, cabinetMedium, satoshiBlack, satoshiBold } from "@/fonts"; +import { cabinetBold, cabinetExtraBold, cabinetMedium, satoshiBlack, satoshiBold } from "@/fonts"; import Link from "next/link"; // import { useState, useEffect } from "react"; import Flicker from "@/app/components/Flicker/flicker"; @@ -16,7 +16,7 @@ const Hero = () => { const handleGlowChange = useCallback((allGlowing: boolean) => { setIsGlowing(allGlowing); }, []); - + return (
{ }} > - +

12th - 14th June

- +
- -
-

- Pre-Register Now +

+

+ Apply with Devfolio

- Date: Thu, 23 Apr 2026 23:55:02 +0545 Subject: [PATCH 2/8] Added Logo of devfolio --- frontend/src/app/assets/icons/Devfolio.tsx | 33 ++++++++++++++-------- frontend/src/app/sections/home/Hero.tsx | 7 +++-- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/frontend/src/app/assets/icons/Devfolio.tsx b/frontend/src/app/assets/icons/Devfolio.tsx index 857a951..61b63ee 100644 --- a/frontend/src/app/assets/icons/Devfolio.tsx +++ b/frontend/src/app/assets/icons/Devfolio.tsx @@ -1,13 +1,24 @@ -export default function DevfolioSVG() { +interface DevfolioSVGProps { + className?: string; +} + +export default function DevfolioSVG({ className }: DevfolioSVGProps) { return ( - - - - - - - - - - ); + + + + + + + + + + ); } diff --git a/frontend/src/app/sections/home/Hero.tsx b/frontend/src/app/sections/home/Hero.tsx index b52a0ab..5fb6e50 100644 --- a/frontend/src/app/sections/home/Hero.tsx +++ b/frontend/src/app/sections/home/Hero.tsx @@ -40,13 +40,14 @@ const Hero = () => {
- -
-

+

+ +

Apply with Devfolio

From 81fe162ead062dd1bda6059093db32a57224c11e Mon Sep 17 00:00:00 2001 From: yepMizu Date: Fri, 24 Apr 2026 07:57:17 +0545 Subject: [PATCH 3/8] PC view Navbar Pre-registration button done --- .../src/app/components/Navbar/NavbarPC.tsx | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/components/Navbar/NavbarPC.tsx b/frontend/src/app/components/Navbar/NavbarPC.tsx index 453d70b..7444f2c 100644 --- a/frontend/src/app/components/Navbar/NavbarPC.tsx +++ b/frontend/src/app/components/Navbar/NavbarPC.tsx @@ -2,9 +2,10 @@ import { useState, useEffect, useRef } from "react" import Link from "next/link" import DeerhackLogo from "@/app/assets/icons/DeerhackLogo" -import { cabinetBold, cabinetMedium } from "@/app/utils/fonts" +import { cabinetBold, cabinetMedium, cabinetExtraBold } from "@/app/utils/fonts" import Counter_wrapper from "../counter/Counter" + const NavbarPC = () => { const [isResourceOpen, setIsResourceOpen] = useState(false) const resourceRef = useRef(null) @@ -28,16 +29,17 @@ const NavbarPC = () => {
From 5e999dc1c81f881a0460bbd7becec057be2d0fbc Mon Sep 17 00:00:00 2001 From: yepMizu Date: Fri, 24 Apr 2026 09:05:27 +0545 Subject: [PATCH 4/8] Added Pre-register button in mobile view --- .../src/app/components/Navbar/NavbarMob.tsx | 25 ++++++++++++------- .../src/app/components/Navbar/NavbarPC.tsx | 4 +-- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/frontend/src/app/components/Navbar/NavbarMob.tsx b/frontend/src/app/components/Navbar/NavbarMob.tsx index 186b7dc..2e62662 100644 --- a/frontend/src/app/components/Navbar/NavbarMob.tsx +++ b/frontend/src/app/components/Navbar/NavbarMob.tsx @@ -2,7 +2,7 @@ import { useState, useEffect } from "react"; import Link from "next/link"; import Image from "next/image"; -import { cabinetMedium } from "@/app/utils/fonts"; +import { cabinetMedium, cabinetExtraBold } from "@/app/utils/fonts"; import Counter_wrapper from "../counter/Counter"; import DeerhackLogo from "@/app/assets/icons/DeerHackLogoMob.svg"; @@ -62,10 +62,9 @@ const Navbar = () => {
+
+
+

+ Pre-Register Now +

+
+ + +
diff --git a/frontend/src/app/components/Navbar/NavbarPC.tsx b/frontend/src/app/components/Navbar/NavbarPC.tsx index 7444f2c..a260ee7 100644 --- a/frontend/src/app/components/Navbar/NavbarPC.tsx +++ b/frontend/src/app/components/Navbar/NavbarPC.tsx @@ -70,8 +70,8 @@ const NavbarPC = () => { className="w-full flex justify-center items-center" target="_blank" > -
-

+

+

Pre-Register Now

From 52d6062ed1172dc97a36fed7d2645416e0af8502 Mon Sep 17 00:00:00 2001 From: yepMizu Date: Fri, 24 Apr 2026 09:13:06 +0545 Subject: [PATCH 5/8] Added link to the button of pre register --- .../src/app/components/Navbar/NavbarMob.tsx | 34 ++++++++++++------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/frontend/src/app/components/Navbar/NavbarMob.tsx b/frontend/src/app/components/Navbar/NavbarMob.tsx index 2e62662..356306a 100644 --- a/frontend/src/app/components/Navbar/NavbarMob.tsx +++ b/frontend/src/app/components/Navbar/NavbarMob.tsx @@ -103,12 +103,18 @@ const Navbar = () => {
+
-
-

- Pre-Register Now -

-
+ +
+

+ Pre-Register Now +

+
+
- {isOpen && ( -
setIsOpen(false)} - /> - )} -
- + { + isOpen && ( +
setIsOpen(false)} + /> + ) + } +
+ ); }; From b9f213b07b2e9fc0ebd05f7117f6816e4b8ee2c8 Mon Sep 17 00:00:00 2001 From: yepMizu Date: Fri, 24 Apr 2026 12:01:39 +0545 Subject: [PATCH 6/8] Added Devfolio as Platform Sponser --- frontend/src/app/MainPage.tsx | 2 +- frontend/src/app/components/Sponsors/data.ts | 386 +++++++++---------- frontend/src/app/sections/home/Hero.tsx | 2 +- 3 files changed, 195 insertions(+), 195 deletions(-) diff --git a/frontend/src/app/MainPage.tsx b/frontend/src/app/MainPage.tsx index f5e9597..7c62a66 100644 --- a/frontend/src/app/MainPage.tsx +++ b/frontend/src/app/MainPage.tsx @@ -33,7 +33,7 @@ export default function Home() { - {/* */} + {/* */}