From b0677817696ed6149f2972a00334fb7c0c525c1b Mon Sep 17 00:00:00 2001 From: ASOwnerYT Date: Wed, 4 Dec 2024 20:24:29 +1300 Subject: [PATCH] Add sitemap --- src/app/sitemap.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/app/sitemap.js diff --git a/src/app/sitemap.js b/src/app/sitemap.js new file mode 100644 index 0000000..da13eca --- /dev/null +++ b/src/app/sitemap.js @@ -0,0 +1,22 @@ +export default function sitemap() { + return [ + { + url: 'https://www.teatatucomputers.com/', + lastModified: new Date(), + changeFrequency: 'monthly', + priority: 1, + }, + { + url: 'https://www.teatatucomputers.com/services', + lastModified: new Date(), + changeFrequency: 'monthly', + priority: 0.5, + }, + { + url: 'https://www.teatatucomputers.com/contact', + lastModified: new Date(), + changeFrequency: 'monthly', + priority: 0.5, + }, + ] +} \ No newline at end of file