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

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

export default function TechnologiesPage() {
  return (
    <ContentPage
      eyebrow="TECHNOLOGY STACK"
      title="Modern engineering for reliable digital products."
      description="Technology selection depends on the product, scale, integration requirements, security model and long-term maintenance needs."
      items={[
        "Next.js & React",
        "Node.js & TypeScript",
        "Flutter",
        "PHP & Laravel",
        "Python",
        "Java",
        "MySQL",
        "PostgreSQL",
        "REST APIs",
        "Cloud Infrastructure",
        "DevOps & Deployment",
        "Third-Party Integrations",
      ]}
    />
  );
}
