2026-02-26 22:22:32 +01:00
|
|
|
import AnimatedBackground from '@/components/AnimatedBackground';
|
2026-02-22 21:35:53 +01:00
|
|
|
import { AppShell } from '@/components/layout/AppShell';
|
|
|
|
|
import { Providers } from '@/components/providers/Providers';
|
|
|
|
|
|
|
|
|
|
export default function AppLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<Providers>
|
|
|
|
|
<AppShell>
|
|
|
|
|
{children}
|
|
|
|
|
</AppShell>
|
|
|
|
|
</Providers>
|
|
|
|
|
);
|
|
|
|
|
}
|