import Link from "next/link"; import React from "react"; import { Logo } from "./Logo"; export const Footer = () => { const links = [ { name: "Pricing", href: "/pricing", }, { name: "Blog", href: "/blog", }, { name: "Tools", href: "/tools", }, { name: "Contact", href: "/contact", }, ]; const legal = [ { name: "Privacy Policy", href: "#", }, { name: "Terms of Service", href: "#", }, { name: "Refund Policy", href: "#", }, ]; const socials = [ { name: "Twitter", href: "https://twitter.com/mannupaaji", }, { name: "LinkedIn", href: "https://linkedin.com/in/manuarora28", }, { name: "GitHub", href: "https://github.com/manuarora700", }, ]; return (
Copyright © 2025 by [Company Name]
All rights reserved
{links.map((link) => ( {link.name} ))}
{legal.map((link) => ( {link.name} ))}
{socials.map((link) => ( {link.name} ))}
{/* Large background text - Should be updated with actual app name */}

[APP NAME]

); };