Add complete project files

This commit is contained in:
2025-08-26 08:59:13 +02:00
parent 2756116b75
commit 1da752da34
69 changed files with 11933 additions and 0 deletions

16
next-sitemap.config.js Executable file
View File

@@ -0,0 +1,16 @@
/** @type {import('next-sitemap').IConfig} */
module.exports = {
siteUrl: process.env.SITE_URL || 'https://hamptonbrown.com',
generateRobotsTxt: true,
generateIndexSitemap: false,
exclude: ['/api/*'],
robotsTxtOptions: {
policies: [
{
userAgent: '*',
allow: '/',
disallow: ['/api/', '/admin/'],
},
],
},
};