Simple Footer
Professional footer with organized links, newsletter signup, and social media integration.
ReactTailwind CSSTypeScriptResponsiveFooter
Live Preview
Interactive
Simple Footer.tsxLive Code
"use client";
export default function SimpleFooter() {
const currentYear = new Date().getFullYear();
const footerLinks = {
Product: [
{ name: "Features", href: "#" },
{ name: "Pricing", href: "#" },
{ name: "API", href: "#" },
{ name: "Documentation", href: "#" },
],
Company: [
{ name: "About", href: "#" },
{ name: "Blog", href: "#" },
{ name: "Careers", href: "#" },
{ name: "Contact", href: "#" },
],
Support: [
{ name: "Help Center", href: "#" },
{ name: "Community", href: "#" },
{ name: "Status", href: "#" },
{ name: "Security", href: "#" },
],
Legal: [
{ name: "Privacy", href: "#" },
{ name: "Terms", href: "#" },
{ name: "Cookies", href: "#" },
{ name: "Licenses", href: "#" },
],
};
const socialLinks = [
{
name: "Twitter",
href: "#",
icon: (
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" \/>
<\/svg>
),
},
{
name: "GitHub",
href: "#",
icon: (
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
fillRule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"
clipRule="evenodd"
\/>
<\/svg>
),
},
{
name: "LinkedIn",
href: "#",
icon: (
<svg className="w-5 h-5" fill="currentColor" viewBox="0 0 24 24">
<path
fillRule="evenodd"
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"
clipRule="evenodd"
\/>
<\/svg>
),
},
];
return (
<footer className="bg-white border-t border-gray-200">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
{\/* Main Footer Content *\/}
<div className="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8">
{\/* Brand Section *\/}
<div className="col-span-2">
<div className="flex items-center mb-4">
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center">
<span className="text-white font-bold text-sm">L<\/span>
<\/div>
<span className="ml-2 text-xl font-semibold text-gray-900">
Logo
<\/span>
<\/div>
<p className="text-gray-600 text-sm mb-4 max-w-sm">
Building the future with beautiful, modern components that help
developers create amazing experiences.
<\/p>
<div className="flex space-x-4">
{socialLinks.map((item) => (
<a
key={item.name}
href={item.href}
className="text-gray-400 hover:text-gray-600 transition-colors"
aria-label={item.name}
>
{item.icon}
<\/a>
))}
<\/div>
<\/div>
{\/* Links Sections *\/}
{Object.entries(footerLinks).map(([category, links]) => (
<div key={category} className="col-span-1">
<h3 className="text-sm font-semibold text-gray-900 mb-4">
{category}
<\/h3>
<ul className="space-y-3">
{links.map((link) => (
<li key={link.name}>
<a
href={link.href}
className="text-sm text-gray-600 hover:text-gray-900 transition-colors"
>
{link.name}
<\/a>
<\/li>
))}
<\/ul>
<\/div>
))}
<\/div>
{\/* Newsletter Section *\/}
<div className="mt-12 pt-8 border-t border-gray-200">
<div className="max-w-md">
<h3 className="text-sm font-semibold text-gray-900 mb-2">
Stay updated
<\/h3>
<p className="text-sm text-gray-600 mb-4">
Get the latest news and updates delivered to your inbox.
<\/p>
<form className="flex gap-2">
<input
type="email"
placeholder="Enter your email"
className="flex-1 px-3 py-2 border border-gray-300 rounded-lg text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none"
\/>
<button
type="submit"
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors"
>
Subscribe
<\/button>
<\/form>
<\/div>
<\/div>
{\/* Bottom Section *\/}
<div className="mt-12 pt-8 border-t border-gray-200">
<div className="flex flex-col md:flex-row justify-between items-center">
<p className="text-sm text-gray-600">
\u00A9 {currentYear} Logo. All rights reserved.
<\/p>
<div className="flex items-center space-x-6 mt-4 md:mt-0">
<a
href="#"
className="text-sm text-gray-600 hover:text-gray-900 transition-colors"
>
Privacy Policy
<\/a>
<a
href="#"
className="text-sm text-gray-600 hover:text-gray-900 transition-colors"
>
Terms of Service
<\/a>
<a
href="#"
className="text-sm text-gray-600 hover:text-gray-900 transition-colors"
>
Cookie Policy
<\/a>
<\/div>
<\/div>
<\/div>
<\/div>
<\/footer>
);
}
How to use
- 1. Copy the component code
- 2. Paste it into your React/Next.js project
- 3. Make sure you have Tailwind CSS configured
- 4. Customize colors, spacing, and content as needed
Dependencies
react
^18.0.0tailwindcss
^3.0.0Back to Components
Need complete templates?
View Premium Templates