import Link from "next/link"; import Image from "next/image"; import { constructMetadata } from "@/lib/seo"; import { getAllIndustries } from "@/data/industries"; import { ArrowRight } from "@/components/ui/icons"; export const metadata = constructMetadata({ title: "Industries", description: "Industry-specific software development — healthcare, fintech, real estate, e-commerce and gaming. Dedicated teams, proven playbooks and measurable outcomes.", path: "/industries", }); export default function IndustriesPage() { const industries = getAllIndustries(); return (
{/* Header */}
Industries

Software built for your{" "} industry.

Every industry has its own users, regulations and economics. We bring dedicated teams and proven playbooks to each one — so you ship faster and with less risk.

{/* Grid */}
{industries.map((ind) => (
{ind.name} {ind.name}

{ind.eyebrow}

{ind.subheadline}

Explore
))}
); }