BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/freddy/auth-12

auth-12

freddy/auth-12
FreeBlock

Multi-step split layout onboarding form.

Install it

npx shadcn@latest add https://ui.arkcabin.com/r/auth-12.json

Source

registry/blocks/auth/12/onboarding-form.tsxui.arkcabin.com/r/auth-12.json · first 6 KB
1"use client";
2
3import {
4 BuildingIcon,
5 CheckIcon,
6 ChevronRight,
7 SparklesIcon,
8 UserIcon,
9} from "lucide-react";
10import { useState } from "react";
11import { LogoIcon } from "@/components/logo";
12import { Button } from "@/components/ui/button";
13import { Input } from "@/components/ui/input";
14import { Label } from "@/components/ui/label";
15import { cn } from "@/lib/utils";
16
17const STEPS = [
18 { id: 1, title: "Personal Details", icon: UserIcon },
19 { id: 2, title: "Your Goals", icon: SparklesIcon },
20 { id: 3, title: "Organization", icon: BuildingIcon },
21];
22
23export function OnboardingForm() {
24 const [currentStep, setCurrentStep] = useState(1);
25
26 return (
27 <div className="grid min-h-screen w-full lg:grid-cols-[400px_1fr]">
28 {/* Sidebar Progress Tracker */}
29 <div className="hidden flex-col border-r bg-zinc-50/50 p-10 lg:flex dark:bg-zinc-950/20">
30 <div className="mb-16 flex items-center gap-2">
31 <LogoIcon className="size-6" />
32 <span className="font-bold text-lg tracking-tight">Freddy</span>
33 </div>
34
35 <div className="space-y-12">
36 {STEPS.map((step) => {
37 const isActive = step.id === currentStep;
38 const isCompleted = step.id < currentStep;
39
40 return (
41 <div
42 className="group relative flex items-center gap-6"
43 key={step.id}
44 >
45 {step.id !== 3 && (
46 <div
47 className={cn(
48 "absolute top-10 left-[19px] h-12 w-px bg-border transition-colors duration-500",
49 isCompleted && "bg-primary/50"
50 )}
51 />
52 )}
53
54 <div
55 className={cn(
56 "relative z-10 flex size-10 items-center justify-center rounded-full border bg-background transition-all duration-500",
57 "relative z-10 flex size-10 items-center justify-center rounded-full border bg-background transition-all duration-500",
58 isActive &&
59 "border-primary shadow-sm ring-4 ring-primary/10",
60 isCompleted &&
61 "border-primary bg-primary text-primary-foreground",
62 !(isActive || isCompleted) &&
63 "border-muted text-muted-foreground"
64 )}
65 >
66 {isCompleted ? (
67// … truncated

What it pulls in

Other registry items

  • button
  • input
  • label

Files it writes

  • registry/blocks/auth/12/onboarding-form.tsx

Facts

Registry
freddy
Type
registry:block
Access
Free
Files written
1
Licence
NOASSERTION
First indexed
2026-08-04
Last confirmed
today

Go to the source

ui.arkcabin.com arkcabin/freddy-ui on GitHub Raw registry item This item as JSON

More from freddy

All 60 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
announcement-1announcement-1freddyBlocksFree1 dep
announcement-2announcement-2freddyBlocksFree1 dep
announcement-3announcement-3freddyBlocksFree1 dep
auth-1auth-1freddyBlocksFreeno deps · 2 files
auth-10auth-10freddyBlocksFreeno deps
auth-11auth-11freddyBlocksFreeno deps
auth-2auth-2freddyBlocksFree1 dep · 3 files
auth-3auth-3freddyBlocksFreeno deps · 2 files
BlockDex

Built by

Kynth Studio

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 Studio

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 Studio

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