From 5119b6848b41b0d3d37caa11bbcd332c0c0d58e3 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 14:06:52 +0000 Subject: [PATCH] Update components/footer.tsx --- components/footer.tsx | 96 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 components/footer.tsx diff --git a/components/footer.tsx b/components/footer.tsx new file mode 100644 index 0000000..01755f5 --- /dev/null +++ b/components/footer.tsx @@ -0,0 +1,96 @@ +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: "/privacy" }, + { name: "Terms of Service", href: "/terms" } + ]; + const socials = [ + { + name: "Twitter", + href: "", + }, + { + name: "LinkedIn", + href: "", + }, + { + name: "GitHub", + href: "", + }, + ]; + return ( +
+
+
+
+
+ +
+
Copyright © 2025 by R3venue Agency
+
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 */} +

+ R3venue +

+
+ ); +};