From 3e698fd0af60d47e2ff0ce0f70e75898f2432568 Mon Sep 17 00:00:00 2001
From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com>
Date: Fri, 6 Mar 2026 14:14:38 +0000
Subject: [PATCH] Update website title and metadata to remove "news"
Update the site title and meta tags in the HTML and hook to reflect the removal of the news section and to align with the overall brand.
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 23852c00-4779-460a-9e0c-d09fee4b6c92
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 83fe442f-ac22-4e07-877d-e432211faea2
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/23852c00-4779-460a-9e0c-d09fee4b6c92/koutl3W
Replit-Helium-Checkpoint-Created: true
---
client/index.html | 6 +++---
client/src/hooks/use-page-meta.ts | 2 +-
client/src/pages/home.tsx | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/client/index.html b/client/index.html
index 6665783..12497d7 100644
--- a/client/index.html
+++ b/client/index.html
@@ -3,10 +3,10 @@
- Folx Music Television - Volksmusik & Schlager TV Sender | folx.tv
+ Volksmusik & Schlager | Folx Music Television
-
+
@@ -19,7 +19,7 @@
-
+
diff --git a/client/src/hooks/use-page-meta.ts b/client/src/hooks/use-page-meta.ts
index a8e2c68..1c85749 100644
--- a/client/src/hooks/use-page-meta.ts
+++ b/client/src/hooks/use-page-meta.ts
@@ -9,7 +9,7 @@ export function usePageMeta(title: string, description?: string) {
if (meta) meta.content = description;
}
return () => {
- document.title = "Folx Music Television - Volksmusik & Schlager TV Sender | folx.tv";
+ document.title = "Volksmusik & Schlager | Folx Music Television";
let meta = document.querySelector('meta[name="description"]') as HTMLMetaElement;
if (meta) meta.content = "FOLX TV – Ihr Fernsehsender für Volksmusik und Schlager. Musikvideos, Live-Shows, Interviews und aktuelle Nachrichten aus der Welt der volkstümlichen Musik. Jetzt einschalten!";
};
diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx
index 4df9a75..8a18939 100644
--- a/client/src/pages/home.tsx
+++ b/client/src/pages/home.tsx
@@ -510,7 +510,7 @@ function BentoSkeleton() {
}
export default function Home() {
- usePageMeta("Volksmusik & Schlager News", "FOLX TV – Aktuelle Nachrichten, Musikvideos und Interviews aus der Welt der Volksmusik und des Schlagers.");
+ usePageMeta("Volksmusik & Schlager", "FOLX TV – Aktuelle Nachrichten, Musikvideos und Interviews aus der Welt der Volksmusik und des Schlagers.");
const { data: articles, isLoading } = useQuery({
queryKey: ["/api/articles"],
});