feat: extract hardcoded branding values to env vars

This commit is contained in:
2026-06-26 00:34:04 +04:00
parent f2d03ebec6
commit 9cbb5e3d23
12 changed files with 133 additions and 96 deletions
+1 -1
View File
@@ -15,6 +15,6 @@ export default function robots() {
userAgent: '*',
allow: '/',
},
sitemap: 'https://pawol.nu/sitemap.xml',
sitemap: `${process.env.NEXT_PUBLIC_SITE_URL || 'https://pawol.nu'}/sitemap.xml`,
}
}