feat: add business registration information to imprint sections for German and English localization
This commit is contained in:
parent
e7fa5dcb8d
commit
051d614364
|
|
@ -4,6 +4,13 @@ export const imprint = {
|
|||
companyInfoTitle: 'Angaben gemäß § 5 DDG',
|
||||
umsatzsteuerID: 'Umsatzsteuer-ID: DE316934637',
|
||||
vatID: 'VAT ID: DE316934637',
|
||||
businessRegistrationTitle: 'Gewerbeanmeldung',
|
||||
businessRegistration: {
|
||||
title: 'Gewerbeerlaubnis nach § 34c GewO',
|
||||
dateIssued: '18.03.2026',
|
||||
issuedBy: 'Bezirksamt Tempelhof-Schöneberg von Berlin',
|
||||
authority: 'Ordnungsamt',
|
||||
},
|
||||
contactTitle: 'Kontakt',
|
||||
responsibilityTitle: 'Vertretungsberechtigt',
|
||||
disclaimerTitle: 'Haftungsausschluss',
|
||||
|
|
|
|||
|
|
@ -4,6 +4,13 @@ export const imprint = {
|
|||
companyInfoTitle: 'Information pursuant to § 5 DDG',
|
||||
umsatzsteuerID: 'Umsatzsteuer-ID: DE316934637',
|
||||
vatID: 'VAT ID: DE316934637',
|
||||
businessRegistrationTitle: 'Business Registration',
|
||||
businessRegistration: {
|
||||
title: 'Business License pursuant to § 34c GewO',
|
||||
dateIssued: '18.03.2026',
|
||||
issuedBy: 'District Office Tempelhof-Schöneberg of Berlin',
|
||||
authority: 'Regulatory Authority',
|
||||
},
|
||||
contactTitle: 'Contact',
|
||||
responsibilityTitle: 'Authorized Representative',
|
||||
disclaimerTitle: 'Disclaimer',
|
||||
|
|
|
|||
|
|
@ -34,6 +34,16 @@ export default function ImprintPage() {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div className="imprint-page__section">
|
||||
<h2 className="imprint-page__section-title">{texts.businessRegistrationTitle}</h2>
|
||||
<div className="imprint-page__info">
|
||||
<p><strong>{texts.businessRegistration.title}</strong></p>
|
||||
<p><strong>Datum der Erteilung:</strong> {texts.businessRegistration.dateIssued}</p>
|
||||
<p><strong>Erteilt von:</strong> {texts.businessRegistration.issuedBy}</p>
|
||||
<p>{texts.businessRegistration.authority}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="imprint-page__section">
|
||||
<h2 className="imprint-page__section-title">{texts.contactTitle}</h2>
|
||||
<div className="imprint-page__info">
|
||||
|
|
|
|||
Loading…
Reference in New Issue