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 (