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

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

export default function AboutPage() {
  return (
    <ContentPage
      eyebrow="ABOUT TEJA TECHNOLOGY"
      title="Technology designed around real business needs."
      description="Teja Technology Private Limited builds digital products, software platforms, applications and integrations for businesses looking to modernize operations and serve customers more effectively."
      items={[
        "Business-Focused Engineering",
        "Custom Software Development",
        "Scalable Product Architecture",
        "Secure Digital Platforms",
        "API & System Integration",
        "Long-Term Technology Support",
      ]}
    />
  );
}
