Update meta tags, title, and description for the gallery page to accurately describe it as featuring unique moments from recordings and backstage snapshots, rather than solely concert photos. This includes changes in client/src/pages/gallery.tsx, server/static.ts, and server/vite.ts. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 23852c00-4779-460a-9e0c-d09fee4b6c92 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 67a932ea-d8a9-4376-a0ba-5b355f4f70b7 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/23852c00-4779-460a-9e0c-d09fee4b6c92/OPD8Ro3 Replit-Helium-Checkpoint-Created: true
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
import Header from "@/components/header";
|
||
import Footer from "@/components/footer";
|
||
import GalleryPage from "@/components/photo-gallery";
|
||
import { ArrowLeft } from "lucide-react";
|
||
import { Link } from "wouter";
|
||
import { usePageMeta } from "@/hooks/use-page-meta";
|
||
import { InArticleAd, PageSideAds } from "@/components/adsense";
|
||
|
||
export default function GalleryPageWrapper() {
|
||
usePageMeta("Fotogalerie – Einzigartige Momente von unseren Aufzeichnungen | FOLX TV", "Spannende Schnappschüsse und besondere Augenblicke, eingefangen bei unseren Aufzeichnungen. Authentische Bilder der Volksmusik- und Schlager-Stars in einzigartigen Momenten bei FOLX TV.");
|
||
return (
|
||
<div className="min-h-screen bg-background">
|
||
<Header />
|
||
<PageSideAds />
|
||
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
||
<Link href="/">
|
||
<button className="flex items-center gap-2 text-muted-foreground hover:text-foreground transition-colors mb-6 text-sm" data-testid="button-back">
|
||
<ArrowLeft className="w-4 h-4" />
|
||
Zurück
|
||
</button>
|
||
</Link>
|
||
<h1 className="text-2xl font-bold text-foreground mb-6" data-testid="text-gallery-title">
|
||
Fotogalerie
|
||
</h1>
|
||
<InArticleAd />
|
||
<GalleryPage />
|
||
<InArticleAd />
|
||
</main>
|
||
<Footer />
|
||
</div>
|
||
);
|
||
}
|