Footer
launchui/footerFreeBlock
Website footer with navigation links, social icons, and theme toggle.
Live preview
live · rendered by the registry
Rendered by launchui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://www.launchuicomponents.com/r/footer.jsonSource
1import * as React from "react";23import { cn } from "@/lib/utils";45function Footer({ className, ...props }: React.ComponentProps<"div">) {6 return (7 <div8 data-slot="footer"9 className={cn("bg-background text-foreground pt-12 pb-4", className)}10 {...props}11 />12 );13}1415function FooterContent({ className, ...props }: React.ComponentProps<"div">) {16 return (17 <div18 data-slot="footer-content"19 className={cn(20 "grid grid-cols-2 gap-8 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5",21 className,22 )}23 {...props}24 />25 );26}2728function FooterColumn({ className, ...props }: React.ComponentProps<"div">) {29 return (30 <div31 data-slot="footer-column"32 className={cn("flex flex-col gap-4", className)}33 {...props}34 />35 );36}3738function FooterBottom({ className, ...props }: React.ComponentProps<"div">) {39 return (40 <div41 data-slot="footer-bottom"42 className={cn(43 "border-border dark:border-border/15 text-muted-foreground mt-8 flex flex-col items-center justify-between gap-4 border-t pt-4 text-xs sm:flex-row",44 className,45 )}46 {...props}47 />48 );49}5051export { Footer, FooterBottom, FooterColumn, FooterContent };
What it pulls in
npm packages
Other registry items
Files it writes
More from launchui
All 24 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Bento Gridbento-grid | launchui | Blocks | Free | 1 dep | |
| Carouselcarousel | launchui | Blocks | Free | 5 deps | |
| CTA Sectioncta | launchui | Blocks | Free | 1 dep · 4 files | |
| FAQ Sectionfaq | launchui | Blocks | Free | 2 deps · 2 files | |
| Feature Sectionfeature | launchui | Blocks | Free | 2 deps | |
| Gallerygallery | launchui | Blocks | Free | 2 deps | |
| Hero Sectionhero | launchui | Blocks | Free | 3 deps · 8 files | |
| Items Sectionitems | launchui | Blocks | Free | 2 deps · 2 files |
