import { industries } from '@/data/industries'
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card'
const IndustryDetail = ({ name }) => {
const industry = industries.find(i => i.id === name)
if (!industry) {
return (
)
}
return (
{/* 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) => (
))}
Our Solutions
{industry.solutions.map((solution, index) => (
))}
{/* Right Column - Sidebar */}
)
}
export default IndustryDetail