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

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

export default function PortfolioPage() {
  return (
    <ContentPage
      eyebrow="OUR WORK"
      title="Software capabilities across diverse product categories."
      description="Our development capabilities cover customer-facing applications, internal business systems, transaction platforms and operational software."
      items={[
        "Business Portals",
        "Customer Applications",
        "Admin Management Systems",
        "ERP Platforms",
        "CRM Platforms",
        "Billing Applications",
        "E-Commerce Systems",
        "FinTech Integrations",
        "Education Platforms",
        "Booking Applications",
        "Mobile Applications",
        "API Platforms",
      ]}
      cta="Start Your Project"
    />
  );
}
