From 67d064c7939268dbe6ef39f41d65172025179635 Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Fri, 6 Mar 2026 15:25:47 +0000 Subject: [PATCH] Update footer layout with new categories and legal links Refactor footer component to use a wider max-width, introduce new CATEGORIES and LEGAL_LINKS arrays, and adjust flexbox properties for responsive layout. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 23852c00-4779-460a-9e0c-d09fee4b6c92 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 537a9458-cd04-4055-b860-45752e6eb204 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/23852c00-4779-460a-9e0c-d09fee4b6c92/ee1CXlO Replit-Helium-Checkpoint-Created: true --- client/src/components/footer.tsx | 145 +++++++++++++++---------------- 1 file changed, 70 insertions(+), 75 deletions(-) diff --git a/client/src/components/footer.tsx b/client/src/components/footer.tsx index dd30bf5..3038c58 100644 --- a/client/src/components/footer.tsx +++ b/client/src/components/footer.tsx @@ -8,18 +8,33 @@ const SOCIAL_LINKS = [ { href: "https://www.tiktok.com/@folxtv", icon: SiTiktok, label: "TikTok", testId: "link-social-tiktok" }, ]; +const CATEGORIES = [ + { href: "/category/News", label: "News", testId: "link-footer-news" }, + { href: "/videos", label: "Video", testId: "link-footer-video" }, + { href: "/gallery", label: "Fotogalerie", testId: "link-footer-gallery" }, + { href: "/horoskop", label: "Horoskop", testId: "link-footer-horoskop" }, + { href: "/rezepte", label: "Rezepte", testId: "link-footer-rezepte" }, +]; + +const LEGAL_LINKS = [ + { href: "/empfang-folx-tv", label: "Empfang", testId: "link-footer-empfang" }, + { href: "/ueber-uns", label: "Über uns", testId: "link-footer-ueber-uns" }, + { href: "/kontakt", label: "Kontakt", testId: "link-footer-kontakt" }, + { href: "/impressum", label: "Impressum", testId: "link-footer-impressum" }, + { href: "/datenschutz", label: "Datenschutz", testId: "link-footer-datenschutz" }, +]; + export default function Footer() { return (