Smooth Scroll

An animated stacking card effect that creates a visually engaging experience by layering and animating cards with smooth transitions.

you can check this doc react lenis

Installation

npm install lenis/react

We use lenis for smooth scrolling:

1
'use client';
2
import { ReactLenis } from 'lenis/react';
3
export default function HorizontalScroll(): JSX.Element {
4
return <ReactLenis root>{/* content */}</ReactLenis>;
5
}