This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| DOMKeyframesDefinition, | |
| DynamicAnimationOptions, | |
| ElementOrSelector, | |
| useAnimate, | |
| } from "framer-motion"; | |
| import React, { useEffect, useRef } from "react"; | |
| const TRANSITION: DynamicAnimationOptions = { | |
| ease: "easeInOut", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useEffect, useRef } from "react"; | |
| import { | |
| motion, | |
| useInView, | |
| useMotionValueEvent, | |
| useScroll, | |
| useTransform, | |
| } from "framer-motion"; | |
| export const ScrollAnimations = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import { FiArrowRight, FiAward, FiUser } from "react-icons/fi"; | |
| export const MoreTailwindStuff = () => { | |
| return ( | |
| <div className="grid h-screen place-content-center bg-neutral-100"> | |
| <SizeExample /> | |
| {/* <GroupExample /> */} | |
| {/* <PeerExample /> */} | |
| {/* <RingExample /> */} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| AnimationPlaybackControls, | |
| animate, | |
| motion, | |
| useMotionTemplate, | |
| useMotionValue, | |
| useMotionValueEvent, | |
| useScroll, | |
| useTransform, | |
| } from "framer-motion"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import { | |
| FiBell, | |
| FiDownload, | |
| FiEdit, | |
| FiSave, | |
| FiSettings, | |
| FiUser, | |
| } from "react-icons/fi"; | |
| import { SiAirbnb } from "react-icons/si"; |