This component no longer exists. It was in shadway’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 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.
Newsletter
shadway/footerRemovedBlock
Shadway-style footer with brand section, newsletter form, link grid, and sharp-corner aesthetic.
Live preview
live · rendered by the registry
Rendered by shadway on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://shadway.online/r/footer.jsonSource
1"use client";23import React from "react";4import { Button } from "@/components/ui/button";5import { Input } from "@/components/ui/input";6import { Github, Twitter, Linkedin, Facebook } from "lucide-react";78export function Footer() {9 const currentYear = new Date().getFullYear();1011 return (12 <footer className="w-full py-12 md:py-16 bg-muted/30 border-t">13 <div className="container px-4 sm:px-6 mx-auto">14 <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-10 md:gap-12 mb-12 text-left">15 <div className="space-y-4">16 <h3 className="text-xl font-bold tracking-tight">SHADWAY<span className="text-primary">.</span></h3>17 <p className="text-sm text-muted-foreground leading-relaxed max-w-[240px]">18 Premium UI components and blocks for modern web applications.19 Built with React, Tailwind, and Love.20 </p>21 <div className="flex items-center gap-4">22 {[Twitter, Github, Linkedin, Facebook].map((Icon, i) => (23 <Icon key={i} className="w-5 h-5 text-muted-foreground hover:text-primary cursor-pointer transition-colors" />24 ))}25 </div>26 </div>2728 <div>29 <h4 className="font-semibold mb-5 text-xs uppercase tracking-widest text-foreground/70">Product</h4>30 <ul className="space-y-3 text-sm text-muted-foreground">31 <li className="hover:text-primary cursor-pointer transition-colors">Components</li>32 <li className="hover:text-primary cursor-pointer transition-colors">Templates</li>33 <li className="hover:text-primary cursor-pointer transition-colors">Showcase</li>34 <li className="hover:text-primary cursor-pointer transition-colors">Pricing</li>35 </ul>36 </div>3738 <div>39 <h4 className="font-semibold mb-5 text-xs uppercase tracking-widest text-foreground/70">Support</h4>40 <ul className="space-y-3 text-sm text-muted-foreground">41 <li className="hover:text-primary cursor-pointer transition-colors">Documentation</li>42 <li className="hover:text-primary cursor-pointer transition-colors">Help Center</li>43 <li className="hover:text-primary cursor-pointer transition-colors">Community</li>44 <li className="hover:text-primary cursor-pointer transition-colors">Status</li>45 </ul>46// … truncated
