From 93b09e783dd1c7c48eb18d9bc9ff8135b565cd6d Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 11 Nov 2025 09:06:24 +0530 Subject: [PATCH 1/4] style(footer): Refine footer layout and responsive design - Update container padding for better responsiveness across breakpoints - Adjust grid layout to improve mobile and desktop spacing - Optimize social media icon sizing and spacing - Replace div with semantic nav elements for improved accessibility - Reduce vertical padding and adjust text sizes for more compact design - Add aria-labels to social media links for better screen reader support - Simplify class names and improve overall layout consistency --- components/footer.tsx | 90 ++++++++++++++++++++++--------------------- 1 file changed, 47 insertions(+), 43 deletions(-) diff --git a/components/footer.tsx b/components/footer.tsx index f6e9f85c..0fa68178 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -54,93 +54,97 @@ export default function Footer() { } return ( From 847e00a72d027b4810e6b58a960bc26ec3d5b0cf Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 11 Nov 2025 09:14:06 +0530 Subject: [PATCH 2/4] style(about): Improve responsive design and layout for About page - Adjust section padding for better responsiveness across device sizes - Resize and reposition decorative background elements with responsive classes - Update button and text sizes to be more adaptive on smaller screens - Refine spacing and padding for user welcome section - Optimize icon and button sizes for improved mobile experience - Add responsive padding and margin adjustments to improve overall layout - Enhance text readability with responsive font sizing --- app/about/page.tsx | 54 +++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/app/about/page.tsx b/app/about/page.tsx index 93787122..bdfe657a 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -431,11 +431,11 @@ export default function AboutPage() { {(() => { if (loading) return null; return ( -
+
-
+
@@ -458,17 +458,17 @@ export default function AboutPage() { whileInView={{ opacity: 1, y: 0 }} transition={{ duration: 0.5 }} viewport={{ once: true }} - className="container px-4 mx-auto text-center relative z-10" + className="container px-4 sm:px-6 mx-auto text-center relative z-10" > -
+
{user ? ( <> -
- @@ -539,12 +539,12 @@ export default function AboutPage() { ) : ( <> -
- From 4e28a41d3f018e418d90613ecec8fa324bc12b03 Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 11 Nov 2025 09:20:49 +0530 Subject: [PATCH 3/4] style(opportunities): Simplify card hover effects and remove gradient overlay - Remove absolute gradient overlay div from opportunity cards - Revert text color changes for card title and description - Maintain existing card hover shadow effect - Improve visual clarity and reduce visual complexity --- app/opportunities/page.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app/opportunities/page.tsx b/app/opportunities/page.tsx index 777d7176..a7e28c96 100644 --- a/app/opportunities/page.tsx +++ b/app/opportunities/page.tsx @@ -114,10 +114,6 @@ export default function OpportunitiesPage() { -
- + {item.title} - + {item.description}
From 217f327edd1206aa56414af6c0d80a6e4206723e Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 11 Nov 2025 09:27:15 +0530 Subject: [PATCH 4/4] style(opportunities): Improve responsive design for Opportunities page - Adjust section padding and spacing for better mobile responsiveness - Reduce font sizes and adjust layout for smaller screen sizes - Optimize gradient and blur effect positioning for mobile views - Resize icons, buttons, and card elements to scale appropriately - Fine-tune text and button sizes across different breakpoints - Enhance overall mobile and responsive layout for Opportunities page --- app/opportunities/page.tsx | 40 +++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/app/opportunities/page.tsx b/app/opportunities/page.tsx index a7e28c96..f560f254 100644 --- a/app/opportunities/page.tsx +++ b/app/opportunities/page.tsx @@ -65,7 +65,7 @@ export default function OpportunitiesPage() {
{/* Hero Section */} -
+
-
-
+
+
-
-
+
+
-
-
-

+

Unlock All Tech Opportunities in One Place

-

+

Navigate to events, hackathons, projects, tests, jobs, and internships curated for the tech community.

{/* Opportunities Grid */} -
-
-
+
+
+
{opportunities.map((item) => (
- +
- + {item.title} - + {item.description}
-
+
{item.tags.map((tag) => ( {tag} @@ -139,10 +139,10 @@ export default function OpportunitiesPage() {