"use client";

import { useTranslation } from "react-i18next";

import Cart from "@/features/cart";
import SEO from "@/components/shared/SEO";

export default function CartPage() {
  const { t } = useTranslation("cart");

  return (
    <>
      <SEO
        title={t("seo.title", "Shopping Cart")}
        description={t(
          "seo.description",
          "Review and manage items in your shopping cart"
        )}
        keywords={t("seo.keywords", "cart, shopping cart, checkout")}
        type="website"
        noindex={true}
      />

      <Cart />
    </>
  );
}
