730e2d8ca8
- Implemented CertificateGallery component to display certification images in a gallery format. - Created CertificationsSection component to showcase certifications with titles and descriptions. - Enhanced Gallery component to support animations and keyboard navigation. - Introduced Select component for dropdown selection with images. - Added utility functions for API responses and pagination handling. - Implemented localization functions for text and content. - Created a custom hook for detecting clicks outside of a component.
19 lines
545 B
JavaScript
19 lines
545 B
JavaScript
module.exports = {
|
|
siteUrl: process.env.SITE_URL || 'http://localhost:4000',
|
|
generateRobotsTxt: true,
|
|
changefreq: 'weekly',
|
|
priority: 0.7,
|
|
sitemapSize: 7000,
|
|
// Enable i18n support
|
|
i18n: {
|
|
locales: ['en', 'fa'],
|
|
defaultLocale: 'en',
|
|
},
|
|
// Optionally, exclude certain paths (like API routes)
|
|
exclude: ['/api/*', '/_next/*'],
|
|
// If you want to include additional sitemaps (for subdirectories, etc.)
|
|
// additionalSitemaps: [
|
|
// `${process.env.SITE_URL || 'http://localhost:5000'}/custom-sitemap.xml`,
|
|
// ],
|
|
};
|