// home.jsx — Home page (function () { const { useState } = React; const Icon = window.Icon; const D = window.DATA; const { Placeholder, Stars, useReveal, CountUp, CourseCard, TestimonialCard } = window; function Hero({ navigate }) { return (
{/* warm decorative blobs */}
Lalamusa's trusted IT institute since 2017

Building digital skills for a smarter tomorrow.

Hands-on, career-focused courses in design, marketing, CAD & IT — taught by industry professionals in modern labs, right here in Nizampura, Lalamusa.

{["test-ayesha", "test-hamza", "test-usman", "test-maryam"].map((id, i) => ( ))}
3,500+ students
trained & certified
4.9 / 5
student rating
{/* image collage */}
Verified Certificate
Check authenticity online
12+ courses
industry-ready
{/* marquee strip */}
{Array.from({ length: 2 }).flatMap((_, k) => ["Adobe Photoshop", "Illustrator", "AutoCAD", "3ds Max", "Digital Marketing", "Blender", "Lumion", "CorelDraw", "Graphic Design"].map((s, i) => ( {s} )) )}
); } function Intro({ navigate }) { const ref = useReveal(); return (
8
years of excellence
Welcome to INFOTECH

Where ambition meets the right skills.

INFOTECH Institute of Computer Education is a professional training center in Lalamusa dedicated to making real, job-ready digital skills accessible and affordable. From creative design to engineering CAD and digital marketing, we help students turn curiosity into a career.

{[["target", "Practical, project-based learning"], ["users", "Small batches, personal attention"], ["certificate", "Verifiable certification"], ["briefcase", "Freelance & job guidance"]].map(([ic, t]) => (
{t}
))}
); } function Featured({ navigate }) { const ref = useReveal(); const featured = D.COURSES.filter((c) => c.featured); return (
Featured Courses

Popular programs students love

{featured.slice(0, 3).map((c) => )}
{featured.slice(3, 5).map((c) => )}
); } function Why() { const ref = useReveal(); return (
Why Choose Us

A learning experience built around you

Everything we do is designed to help you finish with real skills, a portfolio, and the confidence to use them.

{D.WHY.map((w, i) => (

{w.t}

{w.d}

))}
); } function StatsBand() { const ref = useReveal(); return (
{D.STATS.map((s) => (
{s.label}
))}
); } function HomeTestimonials({ navigate }) { const ref = useReveal(); return (
Student Stories

Real results from real students

{D.TESTIMONIALS.slice(0, 3).map((t) => )}
); } function VerifyCTA({ navigate }) { const ref = useReveal(); const [val, setVal] = useState(""); return (
Secure & instant

Verify a certificate in seconds

Employers and students can confirm any INFOTECH certificate is authentic. Just enter the Certificate ID or Registration Number.

{ e.preventDefault(); navigate("verify", null, val); }} className="card" style={{ padding: 22, display: "grid", gap: 12 }}> setVal(e.target.value)} />

Read-only & public — no login required

); } function ContactStrip({ navigate }) { const ref = useReveal(); const I = D.INSTITUTE; return (
Visit Us

Come say hello in Nizampura

Our doors are open six days a week. Drop by for a free consultation, a campus tour, or to enroll in your next course.

    {[["pin", "Address", I.address], ["phone", "Phone", I.phone], ["mail", "Email", I.email], ["clock", "Opening Hours", I.hours]].map(([ic, t, v]) => (
  • {t}
    {v}
  • ))}
Call now
); } function Home({ navigate }) { return (
); } window.Home = Home; })();