ShadcnUI Vaults

Back to Blocks

Footer One

Unknown Block

UnknownComponent

Footer One

whatever

Preview

Full width desktop view

Code

footer-1.tsx
1"use client";
2
3import { Button } from "@/components/ui/button";
4import { Separator } from "@/components/ui/separator";
5import { Github, Twitter, Linkedin, Mail } from "lucide-react";
6
7export function FooterBlock1() {
8  return (
9    <footer className="w-full border-t bg-background">
10      <div className="container mx-auto px-4 md:px-6 py-12">
11        <div className="flex flex-col items-center space-y-8 text-center">
12          <div className="space-y-4">
13            <h3 className="text-2xl font-bold">Stay Connected</h3>
14            <p className="text-muted-foreground max-w-md">
15              Follow us on social media for the latest updates, tips, and
16              community highlights.
17            </p>
18          </div>
19
20          <div className="flex items-center gap-4">
21            <Button variant="ghost" size="icon" asChild>
22              <a href="#" aria-label="GitHub">
23                <Github className="h-5 w-5" />
24              </a>
25            </Button>
26            <Button variant="ghost" size="icon" asChild>
27              <a href="#" aria-label="Twitter">
28                <Twitter className="h-5 w-5" />
29              </a>
30            </Button>
31            <Button variant="ghost" size="icon" asChild>
32              <a href="#" aria-label="LinkedIn">
33                <Linkedin className="h-5 w-5" />
34              </a>
35            </Button>
36            <Button variant="ghost" size="icon" asChild>
37              <a href="#" aria-label="Email">
38                <Mail className="h-5 w-5" />
39              </a>
40            </Button>
41          </div>
42
43          <Separator className="w-full max-w-md" />
44
45          <div className="space-y-2">
46            <p className="text-sm text-muted-foreground">
47              © 2024 Your Company. All rights reserved.
48            </p>
49            <div className="flex items-center gap-4 text-sm">
50              <a
51                href="#"
52                className="text-muted-foreground hover:text-foreground transition-colors"
53              >
54                Privacy Policy
55              </a>
56              <a
57                href="#"
58                className="text-muted-foreground hover:text-foreground transition-colors"
59              >
60                Terms of Service
61              </a>
62              <a
63                href="#"
64                className="text-muted-foreground hover:text-foreground transition-colors"
65              >
66                Contact
67              </a>
68            </div>
69          </div>
70        </div>
71      </div>
72    </footer>
73  );
74}

Dependencies

External Libraries

lucide-react

Shadcn/UI Components

buttonseparator

LICENSE

MIT License

Copyright (c) 2025 Aldhaneka

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Shadcn Vaults Project (CC BY-NC 4.0 with Internal Use Exception)

All user-submitted components in the '/blocks' directory are licensed under the Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0),
with the following clarification and exception:

You are free to:
- Share — copy and redistribute the material in any medium or format
- Adapt — remix, transform, and build upon the material

Under these conditions:
- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made.
- NonCommercial — You may NOT use the material for commercial redistribution, resale, or monetization.

🚫 You MAY NOT:
- Sell or redistribute the components individually or as part of a product (e.g. a UI kit, template marketplace, SaaS component library)
- Offer the components or derivative works in any paid tool, theme pack, or design system

✅ You MAY:
- Use the components in internal company tools, dashboards, or applications that are not sold as products
- Remix or adapt components for private or enterprise projects
- Use them in open-source non-commercial projects

This license encourages sharing, learning, and internal innovation — but prohibits using these components as a basis for monetized products.

Full license text: https://creativecommons.org/licenses/by-nc/4.0/

By submitting a component, contributors agree to these terms.

Contributors

Ramiro Godoy@milogodoy

Review Form Block

Aldhaneka@Aldhanekaa

Project Creator

For questions about licensing, please contact the project maintainers.