BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/efferd/contact-4

contact-4

efferd-/contact-4
FreeBlock

Modern contact card with info section and built-in form area.

Live preview

live · rendered by the registry
Rendered by efferd on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add http://efferd.com/r/contact-4.json

Source

registry/blocks/contact/4/contact-section.tsxefferd.com/r/contact-4.json
1import { cn } from "@/lib/utils";
2import { Button } from "@/components/ui/button";
3import { Field, FieldGroup, FieldLabel } from "@/components/ui/field";
4import { Input } from "@/components/ui/input";
5import { Textarea } from "@/components/ui/textarea";
6
7const contactInfo = [
8 {
9 icon: (
10 <IconPlaceholder
11 hugeicons="MailSend01Icon"
12 lucide="MailIcon"
13 phosphor="EnvelopeIcon"
14 remixicon="RiMailLine"
15 tabler="IconMail"
16 />
17 ),
18 label: "Email",
19 value: "mail@example.com",
20 },
21 {
22 icon: (
23 <IconPlaceholder
24 hugeicons="Call02Icon"
25 lucide="PhoneIcon"
26 phosphor="PhoneIcon"
27 remixicon="RiPhoneLine"
28 tabler="IconPhone"
29 />
30 ),
31 label: "Phone",
32 value: "+92 312 1234567",
33 },
34];
35
36export function ContactSection() {
37 return (
38 <div className="relative mx-auto grid h-full w-full max-w-4xl rounded-2xl border md:grid-cols-[1fr_0.70fr]">
39 <div className="col-span-1 flex flex-col space-y-4 p-8 lg:p-10">
40 <h1 className="font-medium text-2xl tracking-wide md:text-3xl">
41 Contact With Us
42 </h1>
43 <p className="max-w-md text-muted-foreground text-sm leading-relaxed md:text-base">
44 If you have any questions regarding our Services or need help, please
45 fill out the form here.
46 </p>
47 <p className="max-w-md text-muted-foreground text-xs leading-relaxed md:text-sm">
48 We do our best to respond within 1 business day.
49 </p>
50 <div className="grid gap-4">
51 {contactInfo?.map((info) => (
52 <ContactInfo key={info.label} {...info} />
53 ))}
54 </div>
55 </div>
56 <div className="col-span-1 flex items-center border-t p-8 md:border-t-0 md:border-l">
57 <ContactForm />
58 </div>
59 </div>
60 );
61}
62
63function ContactForm() {
64 return (
65 <form className="w-full">
66 <FieldGroup>
67 <Field>
68 <FieldLabel htmlFor="full-name">Full name</FieldLabel>
69 <Input autoComplete="off" id="full-name" placeholder="John Doe" />
70 </Field>
71 <Field>
72 <FieldLabel htmlFor="email">Email</FieldLabel>
73 <Input
74 autoComplete="off"
75 id="email"
76 placeholder="johndoe@example.com"
77 type="email"
78 />
79 </Field>
80 <Field>
81 <FieldLabel htmlFor="phone">Phone</FieldLabel>
82 <Input
83 autoComplete="off"
84 id="phone"
85 placeholder="+1 (555) 123-4567"
86 type="tel"
87 />
88 </Field>
89 <Field>
90 <FieldLabel htmlFor="message">Message</FieldLabel>
91 <Textarea
92 autoComplete="off"
93 id="message"
94 placeholder="Your message"
95 />
96 </Field>
97// … truncated

What it pulls in

Other registry items

  • button
  • field
  • input
  • textarea

Files it writes

  • registry/blocks/contact/4/contact-section.tsx

Facts

Registry
efferd
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-02
Last confirmed
today

Go to the source

Docs on efferd efferd.com Raw registry item This item as JSON

More from efferd

All 201 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
app-shell-1app-shell-1efferdBlocksPaidno deps · 7 files
app-shell-10app-shell-10efferdBlocksPaid1 dep · 13 files
app-shell-2app-shell-2efferdBlocksPaidno deps · 9 files
app-shell-3app-shell-3efferdBlocksPaidno deps · 9 files
app-shell-4app-shell-4efferdBlocksPaidno deps · 9 files
app-shell-5app-shell-5efferdBlocksFree1 dep · 9 files
app-shell-6app-shell-6efferdBlocksPaidno deps · 11 files
app-shell-7app-shell-7efferdBlocksPaidno deps · 12 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