Files

18 lines
456 B
TypeScript
Raw Permalink Normal View History

2025-11-07 11:26:19 +01:00
import AnimatedBackground from '@/components/AnimatedBackground';
import Hero from '@/components/Hero';
import Stats from '@/components/Stats';
2025-11-07 11:26:19 +01:00
import ToolsGrid from '@/components/ToolsGrid';
import Footer from '@/components/Footer';
export default function Home() {
return (
2026-02-27 12:35:02 +01:00
<main className="relative min-h-screen text-foreground">
2025-11-07 11:26:19 +01:00
<AnimatedBackground />
<Hero />
<Stats />
2025-11-07 11:26:19 +01:00
<ToolsGrid />
<Footer />
</main>
);
}