aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/new/onboarding/welcome/welcome-step.tsx
blob: 5c0d998f60d2e3bed97e8041889559b54c3df43a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
	)
}