From bd53300ad05da3369b41e24bb590082f9218cab0 Mon Sep 17 00:00:00 2001 From: Chom <112128328+tomasohCHOM@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:26:24 -0800 Subject: [PATCH] navbar items and hero buttons hover effects --- src/app/(site)/_components/hero.tsx | 4 ++-- src/app/(site)/_components/landing-page.tsx | 8 ++++---- src/app/(site)/_components/sponsors.tsx | 2 +- src/components/nav-bar.tsx | 13 +++++++------ 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/app/(site)/_components/hero.tsx b/src/app/(site)/_components/hero.tsx index 111d417..cfef98a 100644 --- a/src/app/(site)/_components/hero.tsx +++ b/src/app/(site)/_components/hero.tsx @@ -12,9 +12,9 @@ const Hero: React.FC = () => { - + FullyHacks 2025 diff --git a/src/app/(site)/_components/landing-page.tsx b/src/app/(site)/_components/landing-page.tsx index 092b21a..a2d8834 100644 --- a/src/app/(site)/_components/landing-page.tsx +++ b/src/app/(site)/_components/landing-page.tsx @@ -31,15 +31,15 @@ const LandingPage: React.FC = (props) => { - - + + Apply + href="https://drive.google.com/file/d/1KgINevhJUq9wNlkT_m716dFldZ8NTwPO/view" + className="z-[11] mx-0 cursor-pointer rounded-[20px] border-[3px] border-[#4A47CD] py-2 px-4 text-[#4A47CD] transition-all hover:brightness-110 focus:brightness-110 md:text-xl"> Sponsor Us! diff --git a/src/app/(site)/_components/sponsors.tsx b/src/app/(site)/_components/sponsors.tsx index ec741a2..8c3dbc7 100644 --- a/src/app/(site)/_components/sponsors.tsx +++ b/src/app/(site)/_components/sponsors.tsx @@ -97,7 +97,7 @@ const Sponsors: React.FC = (props) => { src="/assets/cone.svg" alt="Light Cone" style={{ width: "400%", height: "auto" }} - className="animate-flicker absolute top-[65.5%] left-[80%] z-10 -translate-x-1/2 -rotate-2 transform opacity-70" + className="absolute top-[65.5%] left-[80%] z-10 -translate-x-1/2 -rotate-2 transform animate-flicker opacity-70" /> diff --git a/src/components/nav-bar.tsx b/src/components/nav-bar.tsx index f70ecdb..c8305a0 100644 --- a/src/components/nav-bar.tsx +++ b/src/components/nav-bar.tsx @@ -73,18 +73,19 @@ export const NavBarLanding: React.FC = () => { /> - + {menuList.map((item, index) => ( - + + className="group relative py-2 text-sm sm:text-base lg:text-lg xl:text-xl"> {item.name} + {index < menuList.length - 1 && ( - - - + )} ))}