- Removed manual theme switching logic and ThemeProvider - Installed and configured tailwind-scrollbar plugin - Updated FileConverter and ConversionOptions to use shadcn Input - Refactored FontSelector to use shadcn Tabs - Simplified global styles and adjusted glassmorphic effects
18 lines
388 B
TypeScript
18 lines
388 B
TypeScript
import AnimatedBackground from '@/components/AnimatedBackground';
|
|
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>
|
|
);
|
|
}
|