Add an Impressum page with company and legal information
Adds a new Impressum page at the /impressum route and a corresponding link in the footer, displaying company details, legal disclosures, copyright, and link disclaimers. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 517dfa7b-26ac-463d-a6e1-a58c6df97188 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 808e4dc8-1d8a-4a65-9ea9-b87bd1ccbfdc Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/517dfa7b-26ac-463d-a6e1-a58c6df97188/EtK2Sno Replit-Helium-Checkpoint-Created: true
This commit is contained in:
parent
bbb2e9b660
commit
a6530c8c16
@ -14,6 +14,7 @@ import RecipesPage from "@/pages/recipes";
|
||||
import SearchPage from "@/pages/search";
|
||||
import EmpfangPage from "@/pages/empfang";
|
||||
import AboutPage from "@/pages/about";
|
||||
import ImpressumPage from "@/pages/impressum";
|
||||
import CookieConsent from "@/components/cookie-consent";
|
||||
|
||||
function Router() {
|
||||
@ -30,6 +31,7 @@ function Router() {
|
||||
<Route path="/rezepte" component={RecipesPage} />
|
||||
<Route path="/empfang-folx-tv" component={EmpfangPage} />
|
||||
<Route path="/ueber-uns" component={AboutPage} />
|
||||
<Route path="/impressum" component={ImpressumPage} />
|
||||
<Route component={NotFound} />
|
||||
</Switch>
|
||||
);
|
||||
|
||||
@ -73,6 +73,11 @@ export default function Footer() {
|
||||
<span className="text-muted-foreground cursor-pointer hover:text-primary transition-colors" data-testid="link-footer-ueber-uns">Über uns</span>
|
||||
</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link href="/impressum">
|
||||
<span className="text-muted-foreground cursor-pointer hover:text-primary transition-colors" data-testid="link-footer-impressum">Impressum</span>
|
||||
</Link>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
|
||||
75
client/src/pages/impressum.tsx
Normal file
75
client/src/pages/impressum.tsx
Normal file
@ -0,0 +1,75 @@
|
||||
import { Scale } from "lucide-react";
|
||||
import Header from "@/components/header";
|
||||
import Footer from "@/components/footer";
|
||||
|
||||
export default function ImpressumPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-background">
|
||||
<Header />
|
||||
<main className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
||||
<div className="flex items-center gap-3 mb-8">
|
||||
<Scale className="w-7 h-7 text-primary" />
|
||||
<h1 className="text-3xl font-bold text-foreground" data-testid="text-impressum-title">
|
||||
Impressum
|
||||
</h1>
|
||||
</div>
|
||||
|
||||
<article className="space-y-8 text-[15px] leading-relaxed text-muted-foreground" data-testid="section-impressum-content">
|
||||
<section>
|
||||
<h2 className="text-foreground font-semibold text-lg mb-3">Herausgeber</h2>
|
||||
<p>
|
||||
BoldFrame Productions d.o.o.
|
||||
<br />
|
||||
Sokolska ulica 46
|
||||
<br />
|
||||
2000 Maribor
|
||||
<br />
|
||||
Slowenien
|
||||
</p>
|
||||
<p className="mt-2">
|
||||
UID-Nr.: SI38853507
|
||||
<br />
|
||||
E-Mail:{" "}
|
||||
<a href="mailto:office@boldframe.productions" className="text-primary hover:underline" data-testid="link-email">
|
||||
office@boldframe.productions
|
||||
</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-foreground font-semibold text-lg mb-3">Offenlegung nach Mediengesetz</h2>
|
||||
<p>
|
||||
Medieninhaber: BoldFrame Productions d.o.o.
|
||||
<br />
|
||||
Unternehmensgegenstand: Privatfernsehveranstalter, Film, TV und Videoproduktionen
|
||||
<br />
|
||||
Sokolska ulica 46
|
||||
<br />
|
||||
2000 Maribor
|
||||
<br />
|
||||
Slowenien
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-foreground font-semibold text-lg mb-3">Copyright</h2>
|
||||
<p>
|
||||
Fotos stammen aus eigenen Archiven oder wurden von den Künstlern, Produzenten und Musikfirmen zugeliefert. Die Rechte für sämtliche Abbildungen, Grafiken, Texte liegen, sofern nicht anders gekennzeichnet, bei BoldFrame Productions d.o.o. Unerlaubtes Kopieren oder Verwenden von Bildern und Texten (auch teilweise) bedarf der vorherigen schriftlichen Genehmigung. Alle Rechte vorbehalten.
|
||||
</p>
|
||||
<p className="mt-3">
|
||||
Wir widersprechen jeder kommerziellen Verwendung und jeder sonstigen Weitergabe und anderweitigen Veröffentlichung dieser Daten.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 className="text-foreground font-semibold text-lg mb-3">Links</h2>
|
||||
<p>
|
||||
BoldFrame Productions d.o.o. übernimmt keine Verantwortung oder Haftung hinsichtlich des Zugriffs auf bzw. des Materials in Websites, auf die von dieser Site aus zugegriffen wird. Zum Zeitpunkt der Verlinkung bestand nach eingehender Prüfung der gelinkten Seiten keinerlei Verdacht auf Inhalte, die nach jeweils geltendem Landesrecht gegen Gesetze verstoßen hätten. BoldFrame Productions d.o.o. distanziert sich daher ausdrücklich und unwiderruflich von jeglichen rechtswidrigen Inhalten auf den verlinkten Seiten.
|
||||
</p>
|
||||
</section>
|
||||
</article>
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user