diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 272b820..e02bd4a 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,5 +1,13 @@ --- // src/components/Footer.astro +import { loadWaasConfigs } from '../utils/configLoader'; + +const { siteConfig } = loadWaasConfigs(); +const footer = siteConfig.footer || { + brandDescription: 'Ihr Partner für professionelles Webdesign, Website-Entwicklung und lokale SEO für Kleinbetriebe & KMU.', + copyrightText: 'N&D i-t SOLUTIONS. Alle Rechte vorbehalten.', + showLegalLinks: true +}; const currentYear = new Date().getFullYear(); --- @@ -10,10 +18,10 @@ const currentYear = new Date().getFullYear();
- Ihr Partner für professionelles Webdesign, Website-Entwicklung und lokale SEO für Kleinbetriebe & KMU. + {footer.brandDescription}