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-two
sv-blocks/footer-twoRemovedBlock
Veil Footer component, variant Two.
Install it
npx shadcn@latest add https://sv-blocks.vercel.app/r/footer-two.jsonSource
1<script>2 let links = [3 {4 group: "Product",5 items: [6 {7 title: "Features",8 href: "#",9 },10 {11 title: "Solution",12 href: "#",13 },14 {15 title: "Customers",16 href: "#",17 },18 {19 title: "Pricing",20 href: "#",21 },22 {23 title: "Help",24 href: "#",25 },26 {27 title: "About",28 href: "#",29 },30 ],31 },32 {33 group: "Solution",34 items: [35 {36 title: "Startup",37 href: "#",38 },39 {40 title: "Freelancers",41 href: "#",42 },43 {44 title: "Organizations",45 href: "#",46 },47 {48 title: "Students",49 href: "#",50 },51 {52 title: "Collaboration",53 href: "#",54 },55 {56 title: "Design",57 href: "#",58 },59 {60 title: "Management",61 href: "#",62 },63 ],64 },65 {66 group: "Company",67 items: [68 {69 title: "About",70 href: "#",71 },72 {73 title: "Careers",74 href: "#",75 },76 {77 title: "Blog",78 href: "#",79 },80 {81 title: "Press",82 href: "#",83 },84 {85 title: "Contact",86 href: "#",87 },88 {89 title: "Help",90 href: "#",91 },92 ],93 },94 {95 group: "Legal",96 items: [97 {98 title: "Licence",99 href: "#",100 },101 {102 title: "Privacy",103 href: "#",104 },105 {106 title: "Cookies",107 href: "#",108 },109 {110 title: "Security",111 href: "#",112 },113 ],114 },115 ];116</script>117118<footer class="border-b bg-white pt-20 dark:bg-transparent">119 <div class="mx-auto max-w-5xl px-6">120 <div class="grid gap-12 md:grid-cols-5">121 <div class="md:col-span-2">122 <a href="/" aria-label="go home" class="block size-fit">123 <svg124 xmlns="http://www.w3.org/2000/svg"125 width="22"126 height="22"127 viewBox="0 0 24 24"128 fill="none"129 role="img"130 color="currentColor"131 >132 <path133 d="M22 18C22 19.4001 22 20.1002 21.7275 20.635C21.4878 21.1054 21.1054 21.4878 20.635 21.7275C20.1002 22 19.4001 22 18 22C16.5999 22 15.8998 22 15.365 21.7275C14.8946 21.4878 14.5122 21.1054 14.2725 20.635C14 20.1002 14 19.4001 14 18C14 16.5999 14 15.8998 14.2725 15.365C14.5122 14.8946 14.8946 14.5122 15.365 14.2725C15.8998 14 16.5999 14 18 14C19.4001 14 20.1002 14 20.635 14.2725C21.1054 14.5122 21.4878 14.8946 21.7275 15.365C22 15.8998 22 16.5999 22 18Z"134 stroke="currentColor"135 stroke-width="1.5"136 ></path>137 <path138// … truncated
