18 lines
456 B
TypeScript
18 lines
456 B
TypeScript
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';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="relative min-h-screen text-foreground">
|
|
<AnimatedBackground />
|
|
<Hero />
|
|
<Stats />
|
|
<ToolsGrid />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|