feat: implement SEO enhancements, automatic slug generation, and font optimizations
All checks were successful
Build and Push App / build (push) Successful in 9m12s

This commit is contained in:
streap2
2026-04-26 08:11:31 +02:00
parent 3c58e60b33
commit d1e551bcca
16 changed files with 564 additions and 896 deletions

21
app/robots.ts Normal file
View File

@@ -0,0 +1,21 @@
import { MetadataRoute } from 'next';
export default function robots(): MetadataRoute.Robots {
const baseUrl = process.env.NEXT_PUBLIC_APP_URL || 'https://afroprenariat.com';
return {
rules: {
userAgent: '*',
allow: '/',
disallow: [
'/login',
'/register',
'/dashboard',
'/subscription',
'/api',
'/suspended',
],
},
sitemap: `${baseUrl}/sitemap.xml`,
};
}