"use client";

import { useTranslation } from "react-i18next";

import Compare from "@/features/compare";
import SEO from "@/components/shared/SEO";

export default function ComparePage() {
  const { t } = useTranslation("compare");

  return (
    <>
      <SEO
        title={t("seo.title", "Compare Products")}
        description={t(
          "seo.description",
          "Compare products side by side to find the best option"
        )}
        keywords={t("seo.keywords", "compare, product comparison")}
        type="website"
        noindex={true}
      />

      <Compare />
    </>
  );
}
