import { cookies } from "next/headers"; import { getLocale, LOCALE_COOKIE, t } from "@/lib/i18n"; export default async function Loading() { const locale = getLocale((await cookies()).get(LOCALE_COOKIE)?.value); return (
{t(locale, "articles.loading")}
{[...Array(7)].map((_, index) => (
))}
); }