Exched/DeepSeek_Coder
0
1import { MetadataRoute } from 'next';2 3export default function sitemap(): MetadataRoute.Sitemap {4 const baseUrl = 'https://deepsite.hf.co';5 6 return [7 {8 url: baseUrl,9 lastModified: new Date(),10 changeFrequency: 'daily',11 priority: 1,12 },13 {14 url: `${baseUrl}/new`,15 lastModified: new Date(),16 changeFrequency: 'weekly',17 priority: 0.8,18 },19 {20 url: `${baseUrl}/auth`,21 lastModified: new Date(),22 changeFrequency: 'monthly',23 priority: 0.5,24 },25 // Note: Dynamic project routes will be handled by Next.js automatically26 // but you can add specific high-priority project pages here if needed27 ];28}29 