Files
kit-ui/app/(app)/layout.tsx
Sebastian Krüger 782923f2e0 feat: refactor theme, add tailwind-scrollbar, and improve UI components
- 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
2026-02-26 22:22:32 +01:00

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>
);
}