import { Helmet } from 'react-helmet-async' import { useParams } from 'react-router-dom' import { industries } from '@/data/industries' import { Link } from 'react-router-dom' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card' const IndustryDetail = () => { const { slug } = useParams() const industry = industries.find(i => i.id === slug) if (!industry) { return (
Industry Not Found | Queue North Technologies

Industry Not Found

The industry you're looking for doesn't exist.

Back to Industries
) } const industryTitle = `${industry.name} | Queue North Technologies` const industryDesc = industry.shortDesc || `Learn about Queue North Technologies solutions for the ${industry.name} industry in Houghton, MI and the Upper Peninsula.` const industryUrl = `https://queuenorth.com/industries/${industry.id}` return ( <> {industryTitle} {/* Page Hero */}

{industry.name}

{industry.shortDesc}

{/* Main Content */}
{/* Left Column - Main Content */}

Industry Overview

{industry.fullDesc}

Pain Points We Solve

{industry.painPoints.map((painPoint, index) => (
{painPoint}
))}

Our Solutions

{industry.solutions.map((solution, index) => (
{solution}
))}
{/* Right Column - Sidebar */}
Industry Insights

Industry

{industry.name}

Request Consultation
← Back to Industries
) } export default IndustryDetail