Skip to content

Commit eb9bd4d

Browse files
committed
Update sitemap and add Terms of Service page
- Added "Terms of Service" and "Privacy Policy" links to the footer for improved navigation. - Included the "Terms of Service" page with comprehensive content outlining the terms and conditions for using Dokploy's services. - Updated the sitemap to include the new "Terms of Service" and "Privacy Policy" URLs, ensuring they are indexed for search engines.
1 parent 841f1d6 commit eb9bd4d

File tree

3 files changed

+970
-0
lines changed

3 files changed

+970
-0
lines changed

apps/website/app/sitemap.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,18 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
1616
changeFrequency: "monthly",
1717
priority: 0.8,
1818
},
19+
{
20+
url: "https://dokploy.com/terms-of-service",
21+
lastModified: new Date(),
22+
changeFrequency: "yearly",
23+
priority: 0.5,
24+
},
25+
{
26+
url: "https://dokploy.com/privacy",
27+
lastModified: new Date(),
28+
changeFrequency: "yearly",
29+
priority: 0.5,
30+
},
1931
...posts.map((post) => ({
2032
url: `https://dokploy.com/blog/${post.slug}`,
2133
lastModified: new Date(post.published_at),

0 commit comments

Comments
 (0)