// pns-2.jsx — About · Why Choose Us · Stats const SP2_SITE = (window.pnsWP && window.pnsWP.siteUrl) || ''; const p2Url = (slug, file) => SP2_SITE ? SP2_SITE + slug + '/' : file; const { useState, useEffect, useRef } = React; const T = window.PNST; const { EyebrowBadge, SectionTitle, ImgPlaceholder } = window; /* ── CHECK ICON ─────────────────────────────────────────────────── */ function CheckIcon() { return ( ); } /* ── ABOUT ──────────────────────────────────────────────────────── */ function PNSAbout() { const points = [ 'Proactive IT management, not reactive break-fix support', 'Locally based team with 24/7 remote support capability', 'Certified Microsoft, Cisco, and CompTIA engineers', 'Dedicated account management for every client']; return (
{/* Text */}
About Us
Your Technology Partner Since 2017.

Premier Network Solutions was founded in Southern California with a singular mission: to give small and medium-sized businesses access to the same caliber of IT expertise that large enterprises rely on. We believe every business deserves proactive, reliable, and expert technology management.

{points.map((pt, i) =>
{pt}
)}
{e.currentTarget.style.background = T.coralL;e.currentTarget.style.transform = 'translateY(-2px)';e.currentTarget.style.boxShadow = `0 8px 28px rgba(232,113,74,0.38)`;}} onMouseLeave={(e) => {e.currentTarget.style.background = T.coral;e.currentTarget.style.transform = 'translateY(0)';e.currentTarget.style.boxShadow = 'none';}}> Learn More About Us →
{/* Image + floating card */}
Premier Network Solutions server room hallway
{/* Floating detail card */}
📅
Founded 2017
Southern California
🤝
100+ Clients Served
Across SMB & Enterprise
{/* Coral accent block behind image */}
); } window.PNSAbout = PNSAbout; /* ── FEATURE ICON ────────────────────────────────────────────────── */ function FeatureIcon({ icon }) { const icons = { monitor: , badge: <>, shield: <>, partner: <>, bolt: <>, expand: <> }; return ( {icons[icon]}); } /* ── WHY CHOOSE US ──────────────────────────────────────────────── */ function PNSWhyChooseUs() { const features = [ { icon: 'monitor', title: '24/7 Monitoring & Support', desc: 'Round-the-clock system monitoring with rapid helpdesk response.' }, { icon: 'badge', title: 'Certified IT Engineers', desc: 'Microsoft, Cisco, and CompTIA certified professionals.' }, { icon: 'shield', title: 'Cybersecurity-First Approach', desc: 'Security built into every solution from day one.' }, { icon: 'partner', title: 'Microsoft Partner', desc: 'Authorized Microsoft solutions partner with direct escalation.' }, { icon: 'bolt', title: 'Rapid Response Times', desc: 'Guaranteed response times backed by our service SLA.' }, { icon: 'expand', title: 'Scalable Solutions', desc: 'IT infrastructure that grows with your business goals.' }]; return (
{/* Image side */}
Cybersecurity-first IT approach — Premier Network Solutions
{/* Floating quote card */}

"Successfully supporting businesses since 2017 with zero-compromise IT service."

PNS
Premier Network Solutions
Southern California
{/* Teal accent */}
{/* Text side */}
Why Choose Us
Why Southern California Businesses Choose Premier?

We understand that technology should empower your team, not slow it down. Our tailored approach ensures every solution is built around your specific needs, goals, and budget.

{features.map((f, i) =>
{f.title}
{f.desc}
)}
); } window.PNSWhyChooseUs = PNSWhyChooseUs; /* ── STATS COUNTER HOOK ─────────────────────────────────────────── */ function useCountUp(target, suffix = '', duration = 2000) { const [count, setCount] = useState(0); const ref = useRef(null); const started = useRef(false); useEffect(() => { const el = ref.current; if (!el) return; const observer = new IntersectionObserver(([entry]) => { if (entry.isIntersecting && !started.current) { started.current = true; const start = Date.now(); const isFloat = String(target).includes('.'); const step = () => { const elapsed = Date.now() - start; const progress = Math.min(elapsed / duration, 1); const ease = 1 - Math.pow(1 - progress, 3); const value = isFloat ? (target * ease).toFixed(1) : Math.floor(target * ease); setCount(value); if (progress < 1) requestAnimationFrame(step); }; requestAnimationFrame(step); observer.disconnect(); } }, { threshold: 0.6 }); observer.observe(el); return () => observer.disconnect(); }, [target, duration]); return [count, ref]; } /* ── STATS ──────────────────────────────────────────────────────── */ function PNSStats() { const [c1, r1] = useCountUp(100); const [c2, r2] = useCountUp(99.9, '%'); const stats = [ { val: c1, ref: r1, suffix: '+', label: 'Clients Served', sub: 'SMBs trust Premier Network Solutions' }, { val: c2, ref: r2, suffix: '%', label: 'Uptime Guarantee', sub: 'Average across all managed clients' }, { val: '2017', ref: useRef(null), suffix: '', label: 'Year Founded', sub: 'Serving Southern California' }]; return (
{/* BG blobs */}
{/* Dark blob shape */}
{/* Collage */}
Enterprise server equipment array
Network fiber optic cables
Network wiring infrastructure close-up
{/* Text + counters */}
By the Numbers
Proven Results for Southern California Businesses.

Since 2017, we've built a track record of delivering reliable IT solutions that help businesses thrive in an increasingly digital and security-critical landscape.

{stats.map((s, i) =>
{s.val}{s.suffix}
{s.label}
{s.sub}
)}
); } window.PNSStats = PNSStats;