ss_website/app/sitemap.js

11 lines
380 B
JavaScript
Raw Normal View History

2024-05-16 05:19:03 +00:00
const URL = "https://simplysyncedllc.com";
export default async function sitemap() {
const routes = ["", "/about", "/contact","/home-automation","/home-networking","/pc-building-and-repair","/pc-server-maintenance","/remote-management","/web-presence"].map((route) => ({
url: `${URL}${route}`,
lastModified: new Date().toISOString(),
}));
return [...routes];
}