Files
IdP/apps/frontend/app/mini-apps/bot-create/page.tsx
2026-06-26 11:18:07 +03:00

21 lines
537 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client';
import { useEffect } from 'react';
import { useRouter } from 'next/navigation';
import { Loader2 } from 'lucide-react';
export default function BotCreateLegacyRedirectPage() {
const router = useRouter();
useEffect(() => {
router.replace('/mini-apps/bot-father?mode=create');
}, [router]);
return (
<div className="flex min-h-screen items-center justify-center p-6 text-sm text-[#667085]">
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Перенаправление...
</div>
);
}