import { useTranslations } from "next-intl";
import React from "react";
import Title from "../../UI/Title";

const Index = () => {
  const t = useTranslations("common");

  return (
    <div className="min-h-[50vh] w-full flex items-center justify-center flex-wrap text-center">
      <Title className="justify-center" title={t("There Is a problem")} />
    </div>
  );
};

export default Index;
