BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/7ovr/auth-2

Split Sign-In With Brand Panel

7ovr/auth-2
FreeBlock

Two-column sign-in pairing a dark brand panel that lists product features with a plain email and password form, no social login buttons.

Install it

npx shadcn@latest add https://7ovr.com/r/auth-2.json

Source

registry/blocks/auth/2/auth-block.tsx7ovr.com/r/auth-2.json · first 6 KB
1"use client"
2
3import { useState } from "react"
4import { toast } from "sonner"
5import { z } from "zod"
6
7import { Button } from "@/components/ui/button"
8import { Checkbox } from "@/components/ui/checkbox"
9import {
10 Field,
11 FieldDescription,
12 FieldError,
13 FieldGroup,
14 FieldLabel,
15} from "@/components/ui/field"
16import { Input } from "@/components/ui/input"
17import { Toaster } from "@/components/ui/sonner"
18import { IconPlaceholder } from "@/components/icons/icon-placeholder"
19
20const BRAND = "Acme"
21const TAGLINE = "Collaborative work, simplified."
22const FEATURES = [
23 "Real-time project dashboards",
24 "Role-based access control",
25 "Audit logs & compliance reports",
26]
27
28const signInSchema = z.object({
29 email: z
30 .string()
31 .min(1, "Email is required")
32 .email("Enter a valid email address"),
33 password: z.string().min(8, "Password must be at least 8 characters"),
34})
35
36export default function AuthBlock() {
37 const [errors, setErrors] = useState<Record<string, string>>({})
38
39 function handleSubmit(event: React.FormEvent<HTMLFormElement>) {
40 event.preventDefault()
41 const data = Object.fromEntries(new FormData(event.currentTarget))
42 const result = signInSchema.safeParse(data)
43 if (!result.success) {
44 const next: Record<string, string> = {}
45 for (const issue of result.error.issues) {
46 const key = issue.path[0]
47 if (typeof key === "string" && !next[key]) {
48 next[key] = issue.message
49 }
50 }
51 setErrors(next)
52 return
53 }
54 setErrors({})
55 toast.promise(new Promise((resolve) => setTimeout(resolve, 1400)), {
56 loading: "Signing you in…",
57 success: "Welcome back to Acme!",
58 error: "Sign-in failed. Please try again.",
59 })
60 }
61
62 function clearError(name: string) {
63 setErrors((prev) => {
64 if (!prev[name]) return prev
65 const next = { ...prev }
66 delete next[name]
67 return next
68 })
69 }
70
71 return (
72 <section className="flex w-full items-center justify-center bg-background text-foreground">
73 <Toaster />
74 <div className="flex w-full max-w-4xl flex-col overflow-hidden rounded-xl md:flex-row">
75 <div className="dark flex flex-col justify-between gap-10 bg-background px-10 py-12 text-foreground md:w-1/2">
76 <div>
77 <span className="text-xl font-bold tracking-tight">{BRAND}</span>
78 </div>
79 <div className="flex flex-col gap-6">
80// … truncated

What it pulls in

npm packages

  • zod
  • @base-ui/react

Other registry items

  • button
  • checkbox
  • field
  • input
  • sonner

Files it writes

  • registry/blocks/auth/2/auth-block.tsx

Facts

Registry
7ovr
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-11
Last confirmed
yesterday

Go to the source

7ovr.com Raw registry item This item as JSON

More from 7ovr

All 241 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Mission Statement With Statsabout-17ovrBlocksFree1 dep
Founder Story With Photoabout-27ovrBlocksFree1 dep
Values Card Gridabout-37ovrBlocksFree1 dep
Mission Vision Values Columnsabout-47ovrBlocksFree1 dep
Recent Activity Cardactivity-17ovrBlocksFree1 dep
Activity Grouped By Dayactivity-27ovrBlocksFree1 dep
Audit Log With Icon Tilesactivity-37ovrBlocksFree1 dep
Activity Tabs With Unreadactivity-47ovrBlocksFree1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and KitGrade

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex