From f26f2e9dcb0679573e675e53e12b1205ec00890b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 26 Jun 2026 20:16:29 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/CollegePage.tsx --- src/pages/CollegePage.tsx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/pages/CollegePage.tsx b/src/pages/CollegePage.tsx index ce7a3fa..77c1507 100644 --- a/src/pages/CollegePage.tsx +++ b/src/pages/CollegePage.tsx @@ -24,6 +24,36 @@ export default function CollegePage() { href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/guy-girl-are-sitting-table-african-girl-computer-science-class-kids-playing-computer-games_1157-42299.jpg", }, + { + title: "BBA", + description: "Bachelor of Business Administration.", + href: "/college", + imageSrc: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&q=80&w=800", + }, + { + title: "BS Mathematics", + description: "Advanced mathematical studies.", + href: "/college", + imageSrc: "https://images.unsplash.com/photo-1635070041078-e363dbe005cb?auto=format&fit=crop&q=80&w=800", + }, + { + title: "BS Physics", + description: "Explore the laws of nature.", + href: "/college", + imageSrc: "https://images.unsplash.com/photo-1636466497217-26a8cbeaf0aa?auto=format&fit=crop&q=80&w=800", + }, + { + title: "BS Chemistry", + description: "Chemical sciences and research.", + href: "/college", + imageSrc: "https://images.unsplash.com/photo-1603126857599-f6e15782fa5d?auto=format&fit=crop&q=80&w=800", + }, + { + title: "BS English", + description: "Literature and linguistics.", + href: "/college", + imageSrc: "https://images.unsplash.com/photo-1457369804613-52c61a468e7d?auto=format&fit=crop&q=80&w=800", + }, ]} /> -- 2.49.1 From a0f8368578a67e9f7ef8529053f07543e2aa9ae6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 26 Jun 2026 20:16:32 +0000 Subject: [PATCH 2/2] Update src/pages/CollegePage.tsx --- src/pages/CollegePage.tsx | 111 +++++++++++++++----------------------- 1 file changed, 44 insertions(+), 67 deletions(-) diff --git a/src/pages/CollegePage.tsx b/src/pages/CollegePage.tsx index 77c1507..b737a13 100644 --- a/src/pages/CollegePage.tsx +++ b/src/pages/CollegePage.tsx @@ -5,76 +5,53 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function CollegePage() { return ( <> -
- +
+ - -
+ tag="Programs" + title="Available Degrees" + description="We offer a wide range of academic paths." + items={[ + { + title: "FSc Pre-Medical", description: "Foundation for medical excellence.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/medical-themeobservation-room-with-computer-tomograph-group-doctors-meeting-mri-office-diagnostic-center-hospital_627829-6526.jpg" + }, + { + title: "FSc Pre-Eng", description: "Engineering foundations.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/easy-fun-group-young-people-casual-clothes-working-modern-office_146671-16478.jpg" + }, + { + title: "ICS", description: "Core computer science studies.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/close-up-kid-while-having-technology-education-class_23-2149123764.jpg" + }, + { + title: "ICom", description: "Commerce and business basics.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-bored-people-working_23-2150697600.jpg" + }, + { + title: "FA", description: "Arts and humanities programs.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/cartoon-students-math-class_23-2151641225.jpg" + }, + { + title: "Inter Tech", description: "Technical skill-based schooling.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/serious-adult-male-student-studying-computer-class_74855-1211.jpg" + }, + { + title: "BS Computer Science", description: "Affiliated with recognized universities.", href: "/college", imageSrc: "http://img.b2bpic.net/free-photo/experienced-worker-talking-with-customer-using-headphones-mic-closeup_482257-125960.jpg" + } + ]} + /> +
+
-
- +
+ - -
+ tag="Admissions" + text="Start your college journey today." + primaryButton={{ + text: "Apply Now", href: "/admissions" + }} + secondaryButton={{ + text: "Call Us", href: "tel:+923158333895" + }} + /> +
+
); } -- 2.49.1