footer-1
efferd/footer-1FreeBlock
Clean footer with company links, resources, and social icons.
Install it
npx shadcn@latest add https://legacy.efferd.com/r/footer-1.jsonSource
1import {2 FacebookIcon,3 GithubIcon,4 InstagramIcon,5 LinkedinIcon,6 TwitterIcon,7 YoutubeIcon,8} from "lucide-react";9import { Logo } from "@/components/logo";10import { Button } from "@/components/ui/button";11import { cn } from "@/lib/utils";1213export function Footer() {14 const company = [15 {16 title: "About Us",17 href: "#",18 },19 {20 title: "Careers",21 href: "#",22 },23 {24 title: "Brand assets",25 href: "#",26 },27 {28 title: "Privacy Policy",29 href: "#",30 },31 {32 title: "Terms of Service",33 href: "#",34 },35 ];3637 const resources = [38 {39 title: "Blog",40 href: "#",41 },42 {43 title: "Help Center",44 href: "#",45 },46 {47 title: "Contact Support",48 href: "#",49 },50 {51 title: "Community",52 href: "#",53 },54 {55 title: "Security",56 href: "#",57 },58 ];5960 const socialLinks = [61 {62 icon: FacebookIcon,63 link: "#",64 },65 {66 icon: GithubIcon,67 link: "#",68 },69 {70 icon: InstagramIcon,71 link: "#",72 },73 {74 icon: LinkedinIcon,75 link: "#",76 },77 {78 icon: TwitterIcon,79 link: "#",80 },81 {82 icon: YoutubeIcon,83 link: "#",84 },85 ];86 return (87 <footer className="relative">88 <div89 className={cn(90 "mx-auto max-w-5xl lg:border-x",91 "dark:bg-[radial-gradient(35%_80%_at_30%_0%,--theme(--color-foreground/.1),transparent)]"92 )}93 >94 <div className="absolute inset-x-0 h-px w-full bg-border" />95 <div className="grid max-w-5xl grid-cols-6 gap-6 p-4">96 <div className="col-span-6 flex flex-col gap-4 pt-5 md:col-span-4">97 <a className="w-max" href="#">98 <Logo className="h-5" />99 </a>100 <p className="max-w-sm text-balance font-mono text-muted-foreground text-sm">101 A comprehensive financial technology platform.102 </p>103 <div className="flex gap-2">104 {socialLinks.map((item, index) => (105 <Button106 key={`social-${item.link}-${index}`}107 size="icon-sm"108 variant="outline"109 >110 <a href={item.link} target="_blank">111 <item.icon className="size-3.5" />112 </a>113 </Button>114 ))}115 </div>116 </div>117// … truncated
What it pulls in
Other registry items
Files it writes
More from efferd
All 40 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| auth-1auth-1 | efferd | Blocks | Free | no deps · 2 files | |
| auth-2auth-2 | efferd | Blocks | Free | 1 dep · 3 files | |
| contact-1contact-1 | efferd | Blocks | Free | no deps | |
| contact-2contact-2 | efferd | Blocks | Free | no deps | |
| cta-1cta-1 | efferd | Blocks | Free | no deps | |
| cta-2cta-2 | efferd | Blocks | Free | no deps | |
| cta-3cta-3 | efferd | Blocks | Free | no deps | |
| cta-4cta-4 | efferd | Blocks | Free | no deps |
