- Hero: remove framer-motion, CSS stagger animations, glass pill CTA button, refined typography and scroll indicator - Stats: remove framer-motion, Lucide icons, tighter glass cards with mono labels - ToolsGrid: remove framer-motion, editorial section heading, 4-col xl grid - ToolCard: replace framer-motion motion.Link with plain Link + CSS hover, compact layout (icon→title→desc→badges+arrow), ElementType icon prop - Footer: remove framer-motion, matches sidebar footer style - BackToTop: remove framer-motion, JS scroll progress bar (1px primary line), compact glass button - not-found: remove framer-motion and shadcn Button, glass pill CTA, 120px mono 404, CSS stagger - page.tsx: remove unnecessary 'use client' directive Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
524 B
TypeScript
20 lines
524 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';
|
|
import BackToTop from '@/components/BackToTop';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="relative min-h-screen text-foreground">
|
|
<AnimatedBackground />
|
|
<BackToTop />
|
|
<Hero />
|
|
<Stats />
|
|
<ToolsGrid />
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|