| import { MetadataRoute } from 'next' |
|
|
| export default function sitemap(): MetadataRoute.Sitemap { |
| return [ |
| { |
| url: 'https://autoloop.com', |
| lastModified: new Date(), |
| changeFrequency: 'daily', |
| priority: 1, |
| }, |
| { |
| url: 'https://autoloop.com/dashboard', |
| lastModified: new Date(), |
| changeFrequency: 'daily', |
| priority: 0.8, |
| }, |
| { |
| url: 'https://autoloop.com/terms', |
| lastModified: new Date(), |
| changeFrequency: 'monthly', |
| priority: 0.5, |
| }, |
| { |
| url: 'https://autoloop.com/privacy', |
| lastModified: new Date(), |
| changeFrequency: 'monthly', |
| priority: 0.5, |
| }, |
| { |
| url: 'https://autoloop.com/feedback', |
| lastModified: new Date(), |
| changeFrequency: 'monthly', |
| priority: 0.6, |
| }, |
| ] |
| } |
|
|