Skip to content

Commit

Permalink
Merge pull request #14 from aswanthabam/dev
Browse files Browse the repository at this point in the history
Added Sitemap
  • Loading branch information
aswanthabam authored Jun 22, 2024
2 parents 069ce08 + 4db2241 commit 61701ee
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions app/sitemap.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { MetadataRoute } from "next";

export default function sitemap(): MetadataRoute.Sitemap {
return [
{
url: `${process.env.NEXT_PUBLIC_FR_DOMAIN}/`,
lastModified: new Date(),
changeFrequency: "monthly",
priority: 1,
},
{
url: `${process.env.NEXT_PUBLIC_FR_DOMAIN}/receive`,
lastModified: new Date(),
changeFrequency: "monthly",
priority: 0.8,
},
{
url: `${process.env.NEXT_PUBLIC_FR_DOMAIN}/share`,
lastModified: new Date(),
changeFrequency: "monthly",
priority: 0.5,
},
];
}

0 comments on commit 61701ee

Please sign in to comment.