A minimal, list-based portfolio section with a cursor-following image preview. On hover, a smooth floating image appears and tracks your mouse using lerp-based animation.
import { ProjectShowcase } from "@/components/ui/project-showcase"; export default function Home() { return ( <main className="min-h-screen bg-background flex items-center justify-center w-full max-w-xl"> <ProjectShowcase /> </main> ) }