import { Tv, Globe, MapPin } from "lucide-react"; import Header from "@/components/header"; import Footer from "@/components/footer"; import { usePageMeta } from "@/hooks/use-page-meta"; import { PageSideAds } from "@/components/adsense"; const COUNTRIES = [ { country: "Deutschland", flag: "DE", providers: [ { name: "MagentaTV", detail: "Telekom Deutschland" }, { name: "Zattoo", detail: null }, { name: "O2 TV", detail: null }, ], }, { country: "Österreich", flag: "AT", providers: [ { name: "A1 Xplore TV", detail: null }, { name: "Salzburg AG CableLink", detail: null }, { name: "Zattoo", detail: null }, ], }, { country: "Schweiz", flag: "CH", providers: [ { name: "Swisscom blue TV", detail: null }, { name: "Zattoo", detail: null }, ], }, ]; export default function EmpfangPage() { usePageMeta("Empfang FOLX TV - Volksmusik & Schlager Sender empfangen", "So empfangen Sie FOLX TV – Ihren Volksmusik & Schlager Sender in Deutschland, Österreich und der Schweiz."); return (

Empfang von FOLX TV

So empfangen Sie Folx Music Television in Ihrem Land

{COUNTRIES.map((c) => (

{c.country}

{c.providers.map((p, i) => ( {p.name} {p.detail && ( ({p.detail}) )} {i < c.providers.length - 1 && ( )} ))}
))}

Online

FOLX TV kann auch über den offiziellen Livestream im Internet empfangen werden. Besuchen Sie{" "} www.folx.tv {" "} für den direkten Zugang.

); }