{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "glassmorphism-launch-timeline-block-shadcnui", "type": "registry:block", "title": "Glassmorphism Launch Timeline", "description": "Frictionless launch roadmap with staggered motion, glassmorphism milestones, and paired CTA actions", "registryDependencies": [ "button" ], "dependencies": [ "framer-motion", "react" ], "files": [ { "path": "@uitripled/react-shadcn/src/components/sections/glassmorphism-launch-timeline-block.tsx", "content": "\"use client\";\n\nimport { motion, type Variants } from \"framer-motion\";\n\nimport { Badge } from \"@/components/ui/badge\";\nimport { Button } from \"@/components/ui/button\";\nimport { CalendarDays, Compass, Flag, Rocket, Sparkles } from \"lucide-react\";\n\nconst steps = [\n {\n title: \"Discovery & Strategy\",\n description:\n \"Align your team around a bold yet achievable product vision in just one workshop.\",\n icon: Compass,\n time: \"Week 1\",\n },\n {\n title: \"Design Sprint\",\n description:\n \"Translate insights into polished flows with daily feedback loops and rapid iteration.\",\n icon: Sparkles,\n time: \"Week 2\",\n },\n {\n title: \"Beta Launch\",\n description:\n \"Ship a confident release backed by telemetry and real user validation.\",\n icon: Rocket,\n time: \"Week 3\",\n },\n {\n title: \"Scale & Learn\",\n description:\n \"Capture momentum with automation, growth playbooks, and purposeful analytics.\",\n icon: Flag,\n time: \"Week 4\",\n },\n];\n\nconst container: Variants = {\n hidden: { opacity: 0, y: 16 },\n show: {\n opacity: 1,\n y: 0,\n transition: {\n duration: 0.5,\n ease: \"easeOut\",\n staggerChildren: 0.12,\n },\n },\n};\n\nconst item: Variants = {\n hidden: { opacity: 0, y: 28 },\n show: {\n opacity: 1,\n y: 0,\n transition: {\n ease: \"easeOut\",\n duration: 0.55,\n },\n },\n};\n\nexport function GlassmorphismLaunchTimelineBlock() {\n return (\n
\n
\n \n
\n
\n \n \n launch timeline\n \n\n
\n

\n Launch faster with a frictionless roadmap\n

\n

\n An intentionally minimal planning flow that surfaces the\n important moments, keeps teams aligned, and celebrates progress\n along the way.\n

\n
\n\n
\n \n Book a session\n \n
\n
\n \n\n \n
\n );\n}\n", "type": "registry:block", "target": "components/uitripled/glassmorphism-launch-timeline-block-shadcnui.tsx" } ] }