Merge version_1_1782504911360 into main #2

Merged
bender merged 2 commits from version_1_1782504911360 into main 2026-06-26 20:16:36 +00:00

View File

@@ -5,46 +5,53 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function CollegePage() {
return (
<>
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<FeaturesRevealCardsBento
tag="Programs"
title="Available Degrees"
description="We offer a wide range of academic paths."
items={[
{
title: "FSc Programs",
description: "Pre-medical and Pre-engineering.",
href: "/college",
imageSrc: "http://img.b2bpic.net/free-photo/children-learns-work-computer-african-girl-sitting-table-boy-girl-computer-science-class_1157-42301.jpg",
},
{
title: "BS Computer Science",
description: "Modern technical degree.",
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",
},
]}
/>
</SectionErrorBoundary>
</div>
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"
}
]}
/>
</SectionErrorBoundary>
</div>
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Admissions"
text="Start your college journey today."
primaryButton={{
text: "Apply Now",
href: "/admissions",
}}
secondaryButton={{
text: "Call Us",
href: "tel:+923158333895",
}}
/>
</SectionErrorBoundary>
</div>
tag="Admissions"
text="Start your college journey today."
primaryButton={{
text: "Apply Now", href: "/admissions"
}}
secondaryButton={{
text: "Call Us", href: "tel:+923158333895"
}}
/>
</SectionErrorBoundary>
</div>
</>
);
}