From 224fbe94427faa939e046e369b8e6782a4f6f2dd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 11:49:54 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ce522c0..8c4f364 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -56,7 +56,7 @@ export default function AboutPage() { { title: 'Collaborative Environment', description: 'Work alongside peers on exciting challenges and share knowledge freely.', icon: Users }, { title: 'Expert Mentorship', description: 'Learn from experienced professionals who guide and inspire our members.', icon: GraduationCap } ]} - imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-winning-videogame_23-2149349984.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-winning-videogame_23-2149349984.jpg" imageAlt="Tech club members collaborating on a project" mediaAnimation="slide-up" imagePosition="left" From 2eb1e502d29c738f6a7895908efc08511163bb31 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 11:49:55 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f7c11f..3a54e01 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,19 +4,15 @@ import { Inter } from "next/font/google"; import "./globals.css"; const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], + variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Tech Club | Connect, Create & Code with Fellow Enthusiasts", - description: "Join our vibrant tech club for students aged 16-25. Discover projects, events, and resources to fuel your passion for technology and innovation.", - keywords: ["tech club", "computer club", "tech enthusiasts", "student programming", "coding community", "tech events", "innovation hub"], + title: "Tech Club | Connect, Create & Code with Fellow Enthusiasts", description: "Join our vibrant tech club for students aged 16-25. Discover projects, events, and resources to fuel your passion for technology and innovation.", keywords: ["tech club", "computer club", "tech enthusiasts", "student programming", "coding community", "tech events", "innovation hub"], }; export default function RootLayout({ From 5e8d3107bfcb8f8c2ab55366eb46e2f4c493a3d2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 11:49:55 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c83e04d..26e34d4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import React from 'react'; import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Sparkles, Code, Users, GraduationCap, GitBranch, Calendar, BookOpen } from "lucide-react"; +import { Sparkles, Code, Users, GraduationCap, GitBranch, Calendar } from "lucide-react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; @@ -64,10 +64,10 @@ export default function HomePage() { imageAlt="Group of diverse tech enthusiasts working together on laptops and prototypes" mediaAnimation="slide-up" marqueeItems={[ - { type: 'text', text: 'Hackathons', icon: 'Code' }, - { type: 'text', text: 'Workshops', icon: 'GraduationCap' }, - { type: 'text', text: 'Mentorship', icon: 'Users' }, - { type: 'text', text: 'Open Source', icon: 'GitBranch' } + { type: 'text', text: 'Hackathons' }, + { type: 'text', text: 'Workshops' }, + { type: 'text', text: 'Mentorship' }, + { type: 'text', text: 'Open Source' } ]} marqueeSpeed={40} showMarqueeCard={true} @@ -91,7 +91,7 @@ export default function HomePage() { { title: 'Collaborative Environment', description: 'Work alongside peers on exciting challenges and share knowledge freely.', icon: Users }, { title: 'Expert Mentorship', description: 'Learn from experienced professionals who guide and inspire our members.', icon: GraduationCap } ]} - imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-winning-videogame_23-2149349984.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/side-view-friends-winning-videogame_23-2149349984.jpg" imageAlt="Tech club members collaborating on a project" mediaAnimation="slide-up" imagePosition="left" From 78d5b2392b62c083f6502d22b529c2e3125cde1d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 11:49:55 +0000 Subject: [PATCH 4/4] Update src/app/projects/page.tsx --- src/app/projects/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/projects/page.tsx b/src/app/projects/page.tsx index 225f1eb..8cdb798 100644 --- a/src/app/projects/page.tsx +++ b/src/app/projects/page.tsx @@ -3,7 +3,7 @@ import React from 'react'; import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Code, Calendar, BookOpen, Sparkles } from "lucide-react"; +import { Code, Calendar, BookOpen } from "lucide-react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';