├── README.md ├── bottom-navigation ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── fuzzy-search ├── README.md ├── _gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ ├── useDebounce.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── ios-gallery ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ ├── BlackBG.jpeg │ │ ├── blackBGim.jpeg │ │ ├── blueBg.jpeg │ │ ├── greenBg.jpeg │ │ ├── orangeBg.jpeg │ │ ├── purpleBg.jpeg │ │ └── react.svg │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── parallax-animation ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── pay-now-micro-interactions ├── README.md ├── _gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── Button.jsx │ ├── Spinner.svg │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── scroll-text-reveal ├── README.md ├── _gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── stagger-animation ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── whatsapp-animation ├── README.md ├── _gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ ├── Camera.svg │ ├── Contact.svg │ ├── Docs.svg │ ├── Photos.svg │ ├── Sticker.svg │ └── vite.svg ├── src │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── youtube-subscribe-animation ├── README.md ├── _gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── Particles.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/README.md -------------------------------------------------------------------------------- /bottom-navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/.gitignore -------------------------------------------------------------------------------- /bottom-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/README.md -------------------------------------------------------------------------------- /bottom-navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/index.html -------------------------------------------------------------------------------- /bottom-navigation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/package-lock.json -------------------------------------------------------------------------------- /bottom-navigation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/package.json -------------------------------------------------------------------------------- /bottom-navigation/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/postcss.config.cjs -------------------------------------------------------------------------------- /bottom-navigation/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/public/vite.svg -------------------------------------------------------------------------------- /bottom-navigation/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/src/App.css -------------------------------------------------------------------------------- /bottom-navigation/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/src/App.tsx -------------------------------------------------------------------------------- /bottom-navigation/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/src/index.css -------------------------------------------------------------------------------- /bottom-navigation/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/src/main.tsx -------------------------------------------------------------------------------- /bottom-navigation/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /bottom-navigation/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/tailwind.config.cjs -------------------------------------------------------------------------------- /bottom-navigation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/tsconfig.json -------------------------------------------------------------------------------- /bottom-navigation/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/tsconfig.node.json -------------------------------------------------------------------------------- /bottom-navigation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/bottom-navigation/vite.config.ts -------------------------------------------------------------------------------- /fuzzy-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/README.md -------------------------------------------------------------------------------- /fuzzy-search/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/_gitignore -------------------------------------------------------------------------------- /fuzzy-search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/index.html -------------------------------------------------------------------------------- /fuzzy-search/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/package-lock.json -------------------------------------------------------------------------------- /fuzzy-search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/package.json -------------------------------------------------------------------------------- /fuzzy-search/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/postcss.config.cjs -------------------------------------------------------------------------------- /fuzzy-search/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/public/vite.svg -------------------------------------------------------------------------------- /fuzzy-search/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/src/App.css -------------------------------------------------------------------------------- /fuzzy-search/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/src/App.tsx -------------------------------------------------------------------------------- /fuzzy-search/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/src/index.css -------------------------------------------------------------------------------- /fuzzy-search/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/src/main.tsx -------------------------------------------------------------------------------- /fuzzy-search/src/useDebounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/src/useDebounce.tsx -------------------------------------------------------------------------------- /fuzzy-search/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /fuzzy-search/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/tailwind.config.cjs -------------------------------------------------------------------------------- /fuzzy-search/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/tsconfig.json -------------------------------------------------------------------------------- /fuzzy-search/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/tsconfig.node.json -------------------------------------------------------------------------------- /fuzzy-search/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/fuzzy-search/vite.config.ts -------------------------------------------------------------------------------- /ios-gallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/.gitignore -------------------------------------------------------------------------------- /ios-gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/README.md -------------------------------------------------------------------------------- /ios-gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/index.html -------------------------------------------------------------------------------- /ios-gallery/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/package-lock.json -------------------------------------------------------------------------------- /ios-gallery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/package.json -------------------------------------------------------------------------------- /ios-gallery/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/postcss.config.cjs -------------------------------------------------------------------------------- /ios-gallery/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/public/vite.svg -------------------------------------------------------------------------------- /ios-gallery/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/App.css -------------------------------------------------------------------------------- /ios-gallery/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/App.tsx -------------------------------------------------------------------------------- /ios-gallery/src/assets/BlackBG.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/BlackBG.jpeg -------------------------------------------------------------------------------- /ios-gallery/src/assets/blackBGim.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/blackBGim.jpeg -------------------------------------------------------------------------------- /ios-gallery/src/assets/blueBg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/blueBg.jpeg -------------------------------------------------------------------------------- /ios-gallery/src/assets/greenBg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/greenBg.jpeg -------------------------------------------------------------------------------- /ios-gallery/src/assets/orangeBg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/orangeBg.jpeg -------------------------------------------------------------------------------- /ios-gallery/src/assets/purpleBg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/purpleBg.jpeg -------------------------------------------------------------------------------- /ios-gallery/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/assets/react.svg -------------------------------------------------------------------------------- /ios-gallery/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/index.css -------------------------------------------------------------------------------- /ios-gallery/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/src/main.tsx -------------------------------------------------------------------------------- /ios-gallery/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ios-gallery/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/tailwind.config.cjs -------------------------------------------------------------------------------- /ios-gallery/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/tsconfig.json -------------------------------------------------------------------------------- /ios-gallery/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/tsconfig.node.json -------------------------------------------------------------------------------- /ios-gallery/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/ios-gallery/vite.config.ts -------------------------------------------------------------------------------- /parallax-animation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/.gitignore -------------------------------------------------------------------------------- /parallax-animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/README.md -------------------------------------------------------------------------------- /parallax-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/index.html -------------------------------------------------------------------------------- /parallax-animation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/package-lock.json -------------------------------------------------------------------------------- /parallax-animation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/package.json -------------------------------------------------------------------------------- /parallax-animation/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/postcss.config.cjs -------------------------------------------------------------------------------- /parallax-animation/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/public/vite.svg -------------------------------------------------------------------------------- /parallax-animation/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/src/App.css -------------------------------------------------------------------------------- /parallax-animation/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/src/App.tsx -------------------------------------------------------------------------------- /parallax-animation/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/src/index.css -------------------------------------------------------------------------------- /parallax-animation/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/src/main.tsx -------------------------------------------------------------------------------- /parallax-animation/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /parallax-animation/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/tailwind.config.cjs -------------------------------------------------------------------------------- /parallax-animation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/tsconfig.json -------------------------------------------------------------------------------- /parallax-animation/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/tsconfig.node.json -------------------------------------------------------------------------------- /parallax-animation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/parallax-animation/vite.config.ts -------------------------------------------------------------------------------- /pay-now-micro-interactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/README.md -------------------------------------------------------------------------------- /pay-now-micro-interactions/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/_gitignore -------------------------------------------------------------------------------- /pay-now-micro-interactions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/index.html -------------------------------------------------------------------------------- /pay-now-micro-interactions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/package-lock.json -------------------------------------------------------------------------------- /pay-now-micro-interactions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/package.json -------------------------------------------------------------------------------- /pay-now-micro-interactions/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/postcss.config.cjs -------------------------------------------------------------------------------- /pay-now-micro-interactions/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/public/vite.svg -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/src/App.tsx -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/src/Button.jsx -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/Spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/src/Spinner.svg -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/src/index.css -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/src/main.tsx -------------------------------------------------------------------------------- /pay-now-micro-interactions/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /pay-now-micro-interactions/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/tailwind.config.cjs -------------------------------------------------------------------------------- /pay-now-micro-interactions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/tsconfig.json -------------------------------------------------------------------------------- /pay-now-micro-interactions/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/tsconfig.node.json -------------------------------------------------------------------------------- /pay-now-micro-interactions/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/pay-now-micro-interactions/vite.config.ts -------------------------------------------------------------------------------- /scroll-text-reveal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/README.md -------------------------------------------------------------------------------- /scroll-text-reveal/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/_gitignore -------------------------------------------------------------------------------- /scroll-text-reveal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/index.html -------------------------------------------------------------------------------- /scroll-text-reveal/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/package-lock.json -------------------------------------------------------------------------------- /scroll-text-reveal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/package.json -------------------------------------------------------------------------------- /scroll-text-reveal/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/postcss.config.cjs -------------------------------------------------------------------------------- /scroll-text-reveal/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/public/vite.svg -------------------------------------------------------------------------------- /scroll-text-reveal/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scroll-text-reveal/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/src/App.tsx -------------------------------------------------------------------------------- /scroll-text-reveal/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/src/index.css -------------------------------------------------------------------------------- /scroll-text-reveal/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/src/main.tsx -------------------------------------------------------------------------------- /scroll-text-reveal/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /scroll-text-reveal/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/tailwind.config.cjs -------------------------------------------------------------------------------- /scroll-text-reveal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/tsconfig.json -------------------------------------------------------------------------------- /scroll-text-reveal/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/tsconfig.node.json -------------------------------------------------------------------------------- /scroll-text-reveal/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/scroll-text-reveal/vite.config.ts -------------------------------------------------------------------------------- /stagger-animation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/.gitignore -------------------------------------------------------------------------------- /stagger-animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/README.md -------------------------------------------------------------------------------- /stagger-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/index.html -------------------------------------------------------------------------------- /stagger-animation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/package-lock.json -------------------------------------------------------------------------------- /stagger-animation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/package.json -------------------------------------------------------------------------------- /stagger-animation/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/postcss.config.cjs -------------------------------------------------------------------------------- /stagger-animation/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/public/vite.svg -------------------------------------------------------------------------------- /stagger-animation/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/src/App.css -------------------------------------------------------------------------------- /stagger-animation/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/src/App.tsx -------------------------------------------------------------------------------- /stagger-animation/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/src/index.css -------------------------------------------------------------------------------- /stagger-animation/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/src/main.tsx -------------------------------------------------------------------------------- /stagger-animation/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /stagger-animation/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/tailwind.config.cjs -------------------------------------------------------------------------------- /stagger-animation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/tsconfig.json -------------------------------------------------------------------------------- /stagger-animation/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/tsconfig.node.json -------------------------------------------------------------------------------- /stagger-animation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/stagger-animation/vite.config.ts -------------------------------------------------------------------------------- /whatsapp-animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/README.md -------------------------------------------------------------------------------- /whatsapp-animation/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/_gitignore -------------------------------------------------------------------------------- /whatsapp-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/index.html -------------------------------------------------------------------------------- /whatsapp-animation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/package-lock.json -------------------------------------------------------------------------------- /whatsapp-animation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/package.json -------------------------------------------------------------------------------- /whatsapp-animation/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/postcss.config.cjs -------------------------------------------------------------------------------- /whatsapp-animation/public/Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/public/Camera.svg -------------------------------------------------------------------------------- /whatsapp-animation/public/Contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/public/Contact.svg -------------------------------------------------------------------------------- /whatsapp-animation/public/Docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/public/Docs.svg -------------------------------------------------------------------------------- /whatsapp-animation/public/Photos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/public/Photos.svg -------------------------------------------------------------------------------- /whatsapp-animation/public/Sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/public/Sticker.svg -------------------------------------------------------------------------------- /whatsapp-animation/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/public/vite.svg -------------------------------------------------------------------------------- /whatsapp-animation/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/src/App.tsx -------------------------------------------------------------------------------- /whatsapp-animation/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/src/index.css -------------------------------------------------------------------------------- /whatsapp-animation/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/src/main.tsx -------------------------------------------------------------------------------- /whatsapp-animation/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /whatsapp-animation/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/tailwind.config.cjs -------------------------------------------------------------------------------- /whatsapp-animation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/tsconfig.json -------------------------------------------------------------------------------- /whatsapp-animation/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/tsconfig.node.json -------------------------------------------------------------------------------- /whatsapp-animation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/whatsapp-animation/vite.config.ts -------------------------------------------------------------------------------- /youtube-subscribe-animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/README.md -------------------------------------------------------------------------------- /youtube-subscribe-animation/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/_gitignore -------------------------------------------------------------------------------- /youtube-subscribe-animation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/index.html -------------------------------------------------------------------------------- /youtube-subscribe-animation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/package-lock.json -------------------------------------------------------------------------------- /youtube-subscribe-animation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/package.json -------------------------------------------------------------------------------- /youtube-subscribe-animation/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/postcss.config.cjs -------------------------------------------------------------------------------- /youtube-subscribe-animation/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/public/vite.svg -------------------------------------------------------------------------------- /youtube-subscribe-animation/src/App.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /youtube-subscribe-animation/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/src/App.tsx -------------------------------------------------------------------------------- /youtube-subscribe-animation/src/Particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/src/Particles.tsx -------------------------------------------------------------------------------- /youtube-subscribe-animation/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/src/index.css -------------------------------------------------------------------------------- /youtube-subscribe-animation/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/src/main.tsx -------------------------------------------------------------------------------- /youtube-subscribe-animation/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /youtube-subscribe-animation/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/tailwind.config.cjs -------------------------------------------------------------------------------- /youtube-subscribe-animation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/tsconfig.json -------------------------------------------------------------------------------- /youtube-subscribe-animation/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/tsconfig.node.json -------------------------------------------------------------------------------- /youtube-subscribe-animation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plxity/framer-recipes/HEAD/youtube-subscribe-animation/vite.config.ts --------------------------------------------------------------------------------