// app/sitemap.js // Required for `output: 'export'` so Next emits a static /sitemap.xml. export const dynamic = 'force-static'; export default function sitemap() { const baseUrl = 'https://aramejan.com/'; return [ { url: baseUrl, lastModified: new Date(), changeFrequency: 'weekly', priority: 1, }, // ⬇️ مقالات بلاگ — بعد از اینکه بلاگ روی aramejan.com/blog/ منتشر شد، // این‌ها را از کامنت خارج کن. تا وقتی بلاگ بالا نیامده، در سایت‌مپ نباشند // تا در سرچ کنسول خطای «صفحه یافت نشد / 404» نگیری. // { // url: `${baseUrl}blog/`, // lastModified: new Date(), // changeFrequency: 'weekly', // priority: 0.9, // }, // { // url: `${baseUrl}blog/tmryn-tnfsy-bry-khhsh-strs.html`, // lastModified: new Date(), // changeFrequency: 'monthly', // priority: 0.8, // }, // { // url: `${baseUrl}blog/mdytyshn-chyh.html`, // lastModified: new Date(), // changeFrequency: 'monthly', // priority: 0.7, // }, // { // url: `${baseUrl}blog/khls-shdn-z-strs-b-arm-lnd.html`, // lastModified: new Date(), // changeFrequency: 'monthly', // priority: 0.6, // }, ]; }