Skip to content

Commit

Permalink
feat(Repo): Add Sitemap generation script
Browse files Browse the repository at this point in the history
  • Loading branch information
MFarabi619 committed Jun 25, 2024
1 parent 5f539b0 commit 4e710f9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/sitemap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { MetadataRoute } from 'next';

export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: 'https://ieeespac.ca',
lastModified: new Date(),
changeFrequency: 'weekly',
priority: 1,
},
];
}

0 comments on commit 4e710f9

Please sign in to comment.