Add company logo to legal pages for branding
Integrates the company logo into the Privacy Policy and Terms of Service pages, enhancing visual branding. Updates `.replit` configuration to adjust the order of integrations. Adds the logo asset `prime_time_folx_logo_3_1756930816473.jpg` to the attached assets. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/2cd2c0bc-434c-4bc9-ad3f-b99d3897a0d1/gjpMN2A
This commit is contained in:
parent
414008c0b7
commit
d2b51625f8
2
.replit
2
.replit
@ -40,4 +40,4 @@ args = "npm run dev"
|
||||
waitForPort = 5000
|
||||
|
||||
[agent]
|
||||
integrations = ["javascript_google_analytics==1.0.0", "javascript_database==1.0.0"]
|
||||
integrations = ["javascript_database==1.0.0", "javascript_google_analytics==1.0.0"]
|
||||
|
||||
BIN
attached_assets/prime_time_folx_logo_3_1756930816473.jpg
Normal file
BIN
attached_assets/prime_time_folx_logo_3_1756930816473.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 251 KiB |
@ -1,4 +1,5 @@
|
||||
import { Link } from "wouter";
|
||||
import primeTimeLogoPath from "@assets/prime_time_folx_logo_3_1756930816473.jpg";
|
||||
|
||||
export default function PrivacyPolicy() {
|
||||
return (
|
||||
@ -21,13 +22,28 @@ export default function PrivacyPolicy() {
|
||||
Verantwortlich für die Datenverarbeitung auf dieser Website ist:
|
||||
</p>
|
||||
<div className="bg-bunny-gray/20 p-4 rounded-lg mb-4">
|
||||
<p><strong>PRIME TIME Consulting GmbH</strong></p>
|
||||
<p>Ermelesstr. 12</p>
|
||||
<p>72379 Hechingen</p>
|
||||
<p>Deutschland</p>
|
||||
<p>USt-IdNr.: DE332411962</p>
|
||||
<p>E-Mail: info@go4.video</p>
|
||||
<p>E-Mail: datenschutz@go4.video</p>
|
||||
<div className="flex items-start gap-4 mb-4">
|
||||
<img
|
||||
src={primeTimeLogoPath}
|
||||
alt="PRIME TIME Consulting Logo"
|
||||
className="w-32 h-auto opacity-90"
|
||||
style={{
|
||||
filter: 'drop-shadow(0 2px 4px rgba(0,0,0,0.3))',
|
||||
mixBlendMode: 'screen'
|
||||
}}
|
||||
/>
|
||||
<div>
|
||||
<p><strong>PRIME TIME Consulting GmbH</strong></p>
|
||||
<p>Ermelesstr. 12</p>
|
||||
<p>72379 Hechingen</p>
|
||||
<p>Deutschland</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<p>USt-IdNr.: DE332411962</p>
|
||||
<p>E-Mail: info@go4.video</p>
|
||||
<p>E-Mail: datenschutz@go4.video</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
import { Link } from "wouter";
|
||||
import primeTimeLogoPath from "@assets/prime_time_folx_logo_3_1756930816473.jpg";
|
||||
|
||||
export default function TermsOfService() {
|
||||
return (
|
||||
@ -21,14 +22,29 @@ export default function TermsOfService() {
|
||||
Anbieter dieser Website und der darauf bereitgestellten Dienste ist:
|
||||
</p>
|
||||
<div className="bg-bunny-gray/20 p-4 rounded-lg mb-4">
|
||||
<p><strong>PRIME TIME Consulting GmbH</strong></p>
|
||||
<p>Ermelesstr. 12</p>
|
||||
<p>72379 Hechingen</p>
|
||||
<p>Deutschland</p>
|
||||
<p>USt-IdNr.: DE332411962</p>
|
||||
<p>E-Mail: info@go4.video</p>
|
||||
<p>Registergericht: Amtsgericht Stuttgart</p>
|
||||
<p>Handelsregister: HRB 761299</p>
|
||||
<div className="flex items-start gap-4 mb-4">
|
||||
<img
|
||||
src={primeTimeLogoPath}
|
||||
alt="PRIME TIME Consulting Logo"
|
||||
className="w-32 h-auto opacity-90"
|
||||
style={{
|
||||
filter: 'drop-shadow(0 2px 4px rgba(0,0,0,0.3))',
|
||||
mixBlendMode: 'screen'
|
||||
}}
|
||||
/>
|
||||
<div>
|
||||
<p><strong>PRIME TIME Consulting GmbH</strong></p>
|
||||
<p>Ermelesstr. 12</p>
|
||||
<p>72379 Hechingen</p>
|
||||
<p>Deutschland</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<p>USt-IdNr.: DE332411962</p>
|
||||
<p>E-Mail: info@go4.video</p>
|
||||
<p>Registergericht: Amtsgericht Stuttgart</p>
|
||||
<p>Handelsregister: HRB 761299</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user