Skip to content

Commit

Permalink
Add sitemap file
Browse files Browse the repository at this point in the history
  • Loading branch information
muriukialex committed Feb 16, 2024
1 parent 9a4b83e commit 499c3db
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/sitemap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { MetadataRoute } from "next"

export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: "https://aws-rstart-labs.vercel.app",
lastModified: new Date(),
changeFrequency: "monthly",
priority: 1,
},
{
url: "https://aws-rstart-labs.vercel.app/home",
lastModified: new Date(),
changeFrequency: "monthly",
priority: 0.8,
},
]
}

0 comments on commit 499c3db

Please sign in to comment.