import type { Metadata } from "next";
import ContentPage from "@/components/shared/ContentPage";

export const metadata: Metadata = {
  title: "Industries",
};

export default function IndustriesPage() {
  return (
    <ContentPage
      eyebrow="INDUSTRIES"
      title="Technology solutions across multiple business sectors."
      description="We build adaptable software platforms that can be configured around the workflows and operational requirements of different industries."
      items={[
        "Financial Technology",
        "E-Commerce & Retail",
        "Education",
        "Healthcare",
        "Professional Services",
        "Enterprise Operations",
        "Travel & Booking",
        "Real Estate",
        "Service Businesses",
        "Digital Marketplaces",
        "Utility Platforms",
        "Startups",
      ]}
    />
  );
}
