diff --git a/proto/src/app/kapcsolat/page.tsx b/proto/src/app/kapcsolat/page.tsx
index b8268a3..a086ab0 100755
--- a/proto/src/app/kapcsolat/page.tsx
+++ b/proto/src/app/kapcsolat/page.tsx
@@ -274,7 +274,7 @@ export default function ContactPage() {
{pageContent.info.company.title}
{siteConfig.general.name}
-
{siteConfig.contact.address}
+
{content.common.footer.address}
diff --git a/proto/src/components/Footer.tsx b/proto/src/components/Footer.tsx
index 2fa0567..6a2d224 100755
--- a/proto/src/components/Footer.tsx
+++ b/proto/src/components/Footer.tsx
@@ -57,7 +57,7 @@ export default function Footer() {
>
đą
- {siteConfig.contact.address}
+ {content.common.footer.address}
diff --git a/proto/src/config/site.ts b/proto/src/config/site.ts
index 91d03bc..543be18 100755
--- a/proto/src/config/site.ts
+++ b/proto/src/config/site.ts
@@ -41,7 +41,7 @@ export const siteConfig: SiteConfig = {
contact: {
email: process.env.NEXT_PUBLIC_CONTACT_EMAIL || 'info@mozdit.hu',
- address: 'Budapest, MagyarorszĂĄg',
+ // address lives in content/common.json (footer.address) â CMS-editable
form: {
title: 'Kapcsolatfelvétel',
description: 'Legyen szĂves Ă©rdeklĆdĂ©sĂ©t vagy problĂ©mĂĄjĂĄt rĂ©szletesen megfogalmazni.',
diff --git a/proto/src/content/common.json b/proto/src/content/common.json
index 33cd336..3de31da 100644
--- a/proto/src/content/common.json
+++ b/proto/src/content/common.json
@@ -18,6 +18,7 @@
"banner": "â STAGING / TESZTKĂRNYEZET â A STAGING OLDALT LĂTOD"
},
"footer": {
- "copyright": "© 2002â{year} mozdIT Bt. Minden jog fenntartva."
+ "copyright": "© 2002â{year} mozdIT Bt. Minden jog fenntartva.",
+ "address": "Budapest, MagyarorszĂĄg"
}
}
diff --git a/proto/src/content/schema.js b/proto/src/content/schema.js
index 31bdbba..d14df02 100644
--- a/proto/src/content/schema.js
+++ b/proto/src/content/schema.js
@@ -15,7 +15,7 @@ const schemas = {
labels: object({ required: string, features: string }),
validation: object({ required: string, invalidEmail: string, minLength: string }),
staging: object({ banner: string }),
- footer: object({ copyright: string }),
+ footer: object({ copyright: string, address: string }),
}),
home: object({
hero: object({ title: string, subtitle: string, description: string, trustBullets: array(string), cta: object({ primary: ctaLink, secondary: ctaLink }) }),
diff --git a/proto/src/content/types.ts b/proto/src/content/types.ts
index 52ca993..74335c7 100755
--- a/proto/src/content/types.ts
+++ b/proto/src/content/types.ts
@@ -195,6 +195,7 @@ export interface CommonContent {
}
footer: {
copyright: string
+ address: string
}
}