aboutsummaryrefslogtreecommitdiff
path: root/apps/web/components/new/onboarding/welcome/welcome-step.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/new/onboarding/welcome/welcome-step.tsx')
-rw-r--r--apps/web/components/new/onboarding/welcome/welcome-step.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/web/components/new/onboarding/welcome/welcome-step.tsx b/apps/web/components/new/onboarding/welcome/welcome-step.tsx
new file mode 100644
index 00000000..5c0d998f
--- /dev/null
+++ b/apps/web/components/new/onboarding/welcome/welcome-step.tsx
@@ -0,0 +1,16 @@
+import { motion } from "motion/react"
+
+export function WelcomeStep() {
+ return (
+ <motion.div
+ className="text-center"
+ initial={{ opacity: 0, y: 0 }}
+ animate={{ opacity: 1, y: 0 }}
+ exit={{ opacity: 0, y: 0 }}
+ transition={{ duration: 1, ease: "easeOut" }}
+ layout
+ >
+ <h2 className="text-white text-[32px] font-medium mb-2">Welcome to...</h2>
+ </motion.div>
+ )
+}