aboutsummaryrefslogtreecommitdiff
path: root/projects/96/src/components
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2025-12-01 00:45:09 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2025-12-01 00:45:09 +0000
commitcbc17db44c18a19702938b3fe70ea3de81d326ea (patch)
treec44ef96fc9e66ecb013e99b5d8e2dc8ce333ffc9 /projects/96/src/components
parent3ea515a495e54d63f4d16c1448eb09eba527e976 (diff)
downloadzue.dev-cbc17db44c18a19702938b3fe70ea3de81d326ea.tar
zue.dev-cbc17db44c18a19702938b3fe70ea3de81d326ea.tar.gz
zue.dev-cbc17db44c18a19702938b3fe70ea3de81d326ea.tar.bz2
zue.dev-cbc17db44c18a19702938b3fe70ea3de81d326ea.tar.xz
zue.dev-cbc17db44c18a19702938b3fe70ea3de81d326ea.zip
make it work
Diffstat (limited to 'projects/96/src/components')
-rw-r--r--projects/96/src/components/animations/FadeIn.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/projects/96/src/components/animations/FadeIn.js b/projects/96/src/components/animations/FadeIn.js
deleted file mode 100644
index 21589ce..0000000
--- a/projects/96/src/components/animations/FadeIn.js
+++ /dev/null
@@ -1,17 +0,0 @@
-"use client";
-
-import { motion } from "motion/react";
-
-export default ({ children, props }) => {
- const { duration = 1, delay = 0 } = props || {};
-
- return (
- <motion.div
- initial={{ opacity: 0 }}
- animate={{ opacity: 1 }}
- transition={{ duration, delay }}
- >
- {children}
- </motion.div>
- );
-};