fix mini app bot father

This commit is contained in:
lendry
2026-06-26 11:18:07 +03:00
parent 7ed7cbdd16
commit d3ea470d02
12 changed files with 313 additions and 39 deletions

View File

@@ -0,0 +1,20 @@
'use client';
import { Suspense } from 'react';
import { Loader2 } from 'lucide-react';
import { BotFatherMiniAppContent } from './content';
export default function BotFatherMiniAppPage() {
return (
<Suspense
fallback={
<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>
}
>
<BotFatherMiniAppContent />
</Suspense>
);
}