From 97d1f333688ad44ac7afd946b1c13195468d028d Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:04:15 +0000 Subject: [PATCH] Update components/footer.tsx --- components/footer.tsx | 56 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 components/footer.tsx diff --git a/components/footer.tsx b/components/footer.tsx new file mode 100644 index 0000000..680623d --- /dev/null +++ b/components/footer.tsx @@ -0,0 +1,56 @@ +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 = []; + const socials = []; + return ( +
+
+
+
+
+ +
+
Copyright © 2025 by BG Kebab
+
All rights reserved
+
+
+ {links.map((link) => ( + + {link.name} + + ))} +
+
+
+ {/* Large background text - Should be updated with actual app name */} +

+ [APP NAME] +

+
+ ); +};