// A typical Next.js/React component with anti-patterns import React from 'react'; import { motion } from 'framer-motion'; export function FeatureCard({ title, description, icon }) { return (
{icon}

{title}

{description}

); } export function HeroSection() { return (

Welcome to the Future

Build something amazing today

); } export function StatsCard({ value, label }) { return (
{value}

{label}

); } export function AnimatedPanel({ children }) { return ( {children} ); }