BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/atroui/project-planner

Project Planner

atroui/project-planner
FreeBlock

Multi-step project scoping planner UI.

Install it

npx shadcn@latest add https://atroui.com/r/project-planner.json

Source

registry/default/blocks/project-planner.tsxatroui.com/r/project-planner.json · first 6 KB
1"use client";
2
3import { ArrowLeft, ArrowRight, CheckCircle2 } from "lucide-react";
4import { AnimatePresence, motion, useReducedMotion } from "motion/react";
5import Link from "next/link";
6import { useRouter } from "next/navigation";
7import { useMemo, useState } from "react";
8
9import { cn } from "@/lib/utils";
10
11type PlannerState = {
12 projectType: "mvp" | "full" | "";
13 features: string[];
14 aiRequired: boolean | null;
15 aiType: string;
16 budget: string;
17 timeline: string;
18 name: string;
19 email: string;
20};
21
22const STEPS = [
23 "Project type",
24 "Features",
25 "AI needs",
26 "Budget",
27 "Contact",
28 "Estimate",
29] as const;
30
31const FEATURE_OPTIONS = [
32 "User authentication",
33 "Payments / billing",
34 "Admin dashboard",
35 "Real-time features",
36 "AI / ML feature",
37 "Mobile-responsive",
38 "Third-party integrations",
39];
40
41const AI_TYPES = [
42 "Document processing",
43 "Chat / conversational",
44 "Content generation",
45 "Search / RAG",
46 "Classification / tagging",
47];
48
49const BUDGETS = [
50 { id: "<2k", label: "Under $2k" },
51 { id: "2k-5k", label: "$2k - $5k" },
52 { id: "5k-10k", label: "$5k - $10k" },
53 { id: "10k+", label: "$10k+" },
54];
55
56function estimateProject(state: PlannerState): {
57 service: string;
58 serviceId: string;
59 priceRange: string;
60 timeline: string;
61 summary: string;
62} {
63 const featureCount = state.features.length;
64 const hasAI =
65 state.aiRequired === true || state.features.includes("AI / ML feature");
66
67 if (state.projectType === "mvp" && featureCount <= 3 && !hasAI) {
68 return {
69 service: "7-Day MVP Sprint",
70 serviceId: "mvp-sprint",
71 priceRange: "$4,800",
72 timeline: "7 days",
73 summary: "A focused sprint to ship your core workflow fast.",
74 };
75 }
76
77 if (hasAI && featureCount <= 4) {
78 return {
79 service: "AI Feature Integration",
80 serviceId: "ai-integration",
81 priceRange: "$2,400 - $4,000",
82 timeline: "1-2 weeks",
83 summary:
84 "Add a well-designed AI feature to your existing or new product.",
85 };
86 }
87
88 if (state.features.includes("Admin dashboard") && featureCount >= 4) {
89 return {
90 service: "Full-Stack Product Build",
91 serviceId: "full-stack-build",
92 priceRange: "$8,000 - $15,000",
93 timeline: "4-8 weeks",
94 summary: "End-to-end product development with multiple features.",
95 };
96 }
97
98 if (state.projectType === "mvp") {
99 return {
100 service: "7-Day MVP Sprint",
101 serviceId: "mvp-sprint",
102 priceRange: "$4,800 - $6,000",
103// … truncated

What it pulls in

npm packages

  • lucide-react
  • motion
  • next

Other registry items

  • @atroui/utils

Files it writes

  • registry/default/blocks/project-planner.tsx

Facts

Registry
atroui
Type
registry:block
Access
Free
Files written
1
Licence
MIT
First indexed
2026-08-11
Last confirmed
today

Go to the source

atroui.com atroui/atroui on GitHub Raw registry item This item as JSON

More from atroui

All 81 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Analytics Provideranalytics-provideratrouiBlocksFree1 dep
AR Portfolioar-portfolioatrouiBlocksFree1 dep
Before / Afterbefore-after-slideratrouiBlocksFreeno deps
Calendly Embedcalendly-embedatrouiBlocksFree1 dep
ChangelogchangelogatrouiBlocksFreeno deps
Command Menucommand-menuatrouiBlocksFree4 deps
Contact Formcontact-formatrouiBlocksFree2 deps
Contextual CTAcontextual-ctaatrouiBlocksFree2 deps
BlockDex

Built by

Kynth Studios

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studios

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studios

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex