/* Nexgen Solutions Chitral — reusable content sections shared across pages. Reads window.NEXGEN_* data + shared chrome helpers. Exported to window. */ const { AccentLine: SAccentLine, Button: SButton, Badge: SBadge, CourseCard, FeatureCard, StatBlock, TextLink: STextLink } = window.NexgenSolutionsChitralDesignSystem_3ef89c; /* ---- 01 · Intro / 6+ years ---- */ function IntroExperience() { return (
Who we are

A young, energetic, and professional team turning ideas into digital reality.

With more than six years of experience, Nexgen Solutions Chitral brings together technology, creativity, AI, and practical digital expertise to solve real problems for people and businesses.

We're a modern digital solutions company, a creative studio, and a technology academy — not limited to one service.

{[["6+","Years experience"],["13+","Services"],["6+","Courses"],["1","Team, many skills"]].map(([v,l],i)=>(
{v}{l}
))}
); } /* ---- Services grid (icon tiles). limit=n to preview ---- */ function ServicesSection({ limit, eyebrow = "What we do", title = "Services built to solve real problems.", sub = "From your first website to AI-powered applications — technology, creative, and growth under one roof.", cta = true }) { const items = limit ? window.NEXGEN_SERVICES.slice(0, limit) : window.NEXGEN_SERVICES; useLucide(); return (
{items.map((s) => ( {s.category}

{s.title}

{s.short}

))}
{cta && (
View all services
)}
); } /* ---- AI signature section (brief §31) ---- */ function AISection() { return (
AI at Nexgen

AI isn't the future.
It's already here.

We integrate modern AI tools into development, creative work, automation, productivity, and digital solutions — and we teach the same workflows in our academy.

{["AI-assisted development","Automation","AI content workflows","AI-powered apps","AI training"].map((t) => ( {t} ))}
Explore AI solutions →
); } /* ---- Projects showcase (brief §26, §07) ---- */ function ProjectsShowcase({ full = false }) { const items = window.NEXGEN_PROJECTS; return (
{items.map((p, i) => (
{p.title}
{p.cat} {p.title}
{p.tag}
))}
); } /* ---- Academy / courses preview ---- */ function AcademySection({ limit = 3 }) { const items = window.NEXGEN_COURSES.slice(0, limit); return (
{items.map((c) => ( ))}
Explore all courses
); } /* ---- Why Nexgen (brief §28) ---- */ function WhyNexgen() { useLucide(); return (
{window.NEXGEN_FEATURES.map((f) => ( } title={f.title}>{f.desc} ))}
); } /* ---- Business growth (brief §30) ---- */ function BusinessGrowth() { const items = ["Website","Web application","Branding & identity","Graphic design","Social media","Digital marketing","Video & audio","AI & automation"]; return (
For business

Grow your business digitally.

Don't just build a business — build its digital presence. We help you show up online, look professional, and reach the right people.

Let's work together →
    {items.map((it) => (
  • {it}
  • ))}
); } /* ---- Learning journey ---- */ function JourneySection() { return (
{window.NEXGEN_JOURNEY.map((s, i) => (
{s.n}

{s.t}

{s.d}

))}
); } /* ---- FAQ (accordion) ---- */ function FAQSection() { const [openIdx, setOpenIdx] = React.useState(0); return (
{window.NEXGEN_FAQ.map((f, i) => (

{f.a}

))}
); } Object.assign(window, { IntroExperience, ServicesSection, AISection, ProjectsShowcase, AcademySection, WhyNexgen, BusinessGrowth, JourneySection, FAQSection });