├── .gitignore ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── InfiniteCarousel.tsx ├── ParallaxText.tsx ├── assets │ ├── data.ts │ └── react.svg ├── config.ts ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/InfiniteCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/InfiniteCarousel.tsx -------------------------------------------------------------------------------- /src/ParallaxText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/ParallaxText.tsx -------------------------------------------------------------------------------- /src/assets/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/assets/data.ts -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leduc1901/scroll-velocity-framer-motion/HEAD/yarn.lock --------------------------------------------------------------------------------