This component no longer exists. It was in sv-blocks’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
footer-four
sv-blocks/footer-fourRemovedBlock
Veil Footer component, variant Four.
Install it
npx shadcn@latest add https://sv-blocks.vercel.app/r/footer-four.jsonSource
1<script>2 const links = [3 {4 title: "Features",5 href: "#",6 },7 {8 title: "Solution",9 href: "#",10 },11 {12 title: "Customers",13 href: "#",14 },15 {16 title: "Pricing",17 href: "#",18 },19 {20 title: "Help",21 href: "#",22 },23 {24 title: "About",25 href: "#",26 },27 ];28</script>2930<footer class="border-b bg-white py-12 dark:bg-transparent">31 <div class="mx-auto max-w-5xl px-6">32 <div class="flex flex-wrap justify-between gap-6">33 <span class="order-last block text-center text-sm text-muted-foreground md:order-first"34 >© {new Date().getFullYear()} Tailus UI, All rights reserved</span35 >36 <div class="order-first flex flex-wrap justify-center gap-6 text-sm md:order-last">37 {#each links as link, index}38 <a39 href={link.href}40 class="block text-muted-foreground duration-150 hover:text-primary"41 >42 <span>{link.title}</span>43 </a>44 {/each}45 </div>46 </div>47 </div>48</footer>
