diff --git a/src/app/[locale]/loading.tsx b/src/app/[locale]/loading.tsx new file mode 100644 index 0000000..e4fa306 --- /dev/null +++ b/src/app/[locale]/loading.tsx @@ -0,0 +1,19 @@ +import { useTranslations } from "next-intl"; +import { Spinner } from "@/components/ui/spinner"; + +export default function Loading() { + const t = useTranslations("Fallback.Loading"); + + return ( +
+ {t("Description")} +
++ This page intentionally delayed rendering by 1.5 seconds for QA testing. +
+