Components
Loading preview...
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.
@jatin-yadav05
npx shadcn@latest add https://21st.dev/r/jatin-yadav05/project-showcaseimport { 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>
)
}