New design & bug fixes

This commit is contained in:
pheralb
2022-03-03 14:48:37 +00:00
parent 168b654118
commit c3cebc9ffc
27 changed files with 1273 additions and 1104 deletions
+24
View File
@@ -0,0 +1,24 @@
import React from "react";
import { motion } from "framer-motion";
const Transitions = ({ key, children }) => {
return (
<motion.div
key={key}
initial="initial"
animate="animate"
variants={{
initial: {
opacity: 0,
},
animate: {
opacity: 1,
},
}}
>
{children}
</motion.div>
);
};
export default Transitions;