Social Links 01
ncdai/social-links-01UnverifiedBlock
A social links section with a lined grid layout.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/exekartik/exeKartik/main/social-links-01.jsonSource
1import { cn } from "@/lib/utils"2import { IconPlaceholder } from "@/registry/icons/icon-placeholder"34export function SocialLinks01() {5 return (6 <div className="max-w-screen overflow-x-clip">7 <div className="container mx-auto px-4">8 <div className="relative border-x border-line">9 <div className="pointer-events-none absolute inset-0 -z-1 hidden gap-2 sm:grid sm:grid-cols-2 md:grid-cols-3">10 <div className="border-r border-line" />11 <div className="border-l border-line md:border-x" />12 <div className="border-l border-line max-md:hidden" />13 </div>1415 <ul className="grid grid-cols-1 gap-2 sm:grid-cols-2 md:grid-cols-3">16 {SOCIAL_LINKS.map((link, index) => {17 return (18 <li19 key={index}20 className={cn(21 "max-sm:screen-line-top max-sm:screen-line-bottom",22 "sm:max-md:nth-[2n+1]:screen-line-top sm:max-md:nth-[2n+1]:screen-line-bottom",23 "md:nth-[3n+1]:screen-line-top md:nth-[3n+1]:screen-line-bottom"24 )}25 >26 <SocialLinkItem {...link} />27 </li>28 )29 })}30 </ul>31 </div>32 </div>33 </div>34 )35}3637type SocialLink = {38 icon: string39 title: string40 href: string41}4243function SocialLinkItem({ icon, title, href }: SocialLink) {44 return (45 <div className="relative flex cursor-pointer items-center gap-4 p-4 pr-2 transition-[background-color] ease-out hover:bg-accent/50 dark:hover:bg-accent/20">46 <div className="relative shrink-0 [--image-radius:var(--radius-lg)]">47 <img48 className="size-8 rounded-(--image-radius) select-none"49 src={icon}50 alt={`${title} logo`}51 />52 <div className="pointer-events-none absolute inset-0 rounded-(--image-radius) inset-ring-1 inset-ring-black/10 dark:inset-ring-white/15" />53 </div>5455 <h3 className="flex-1 font-medium">56 <a href={href} target="_blank" rel="noopener">57 <span className="absolute inset-0" aria-hidden />58 {title}59 </a>60 </h3>6162 <IconPlaceholder63 lucide="ArrowUpRightIcon"64 tabler="IconArrowUpRight"65 hugeicons="ArrowUpRight03Icon"66 phosphor="ArrowUpRightIcon"67 remixicon="RiArrowRightUpLine"68 className="size-4 shrink-0 text-muted-foreground"69 />70 </div>71 )72}7374// … truncated
What it pulls in
Other registry items
Files it writes
More from ncdai
All 17 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Blog 01blog-01 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Blog 02blog-02 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Experience 01experience-01 | ncdai | Blocks | Unverified | no deps | |
| Hero 01hero-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Login 01login-01 | ncdai | Blocks | Unverified | no deps · 2 files | |
| Metrics 01metrics-01 | ncdai | Blocks | Unverified | 1 dep · 2 files | |
| Not Found 01not-found-01 | ncdai | Blocks | Free | 3 deps · 11 files | |
| Social Proof 01social-proof-01 | ncdai | Blocks | Unverified | no deps |
