- 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
22 lines
544 B
TypeScript
22 lines
544 B
TypeScript
'use client';
|
|
|
|
import AnimatedBackground from '@/components/AnimatedBackground';
|
|
import Hero from '@/components/Hero';
|
|
import Stats from '@/components/Stats';
|
|
import ToolsGrid from '@/components/ToolsGrid';
|
|
import Footer from '@/components/Footer';
|
|
import BackToTop from '@/components/BackToTop';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="relative min-h-screen dark text-foreground">
|
|
<AnimatedBackground />
|
|
<BackToTop />
|
|
<Hero />
|
|
<Stats />
|
|
<ToolsGrid />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|