File tree Expand file tree Collapse file tree 2 files changed +38
-9
lines changed
apps/web-roo-code/src/app Expand file tree Collapse file tree 2 files changed +38
-9
lines changed Original file line number Diff line number Diff line change 1+ import { MetadataRoute } from "next"
2+
3+ export default function sitemap ( ) : MetadataRoute . Sitemap {
4+ const baseUrl = "https://roocode.com"
5+
6+ return [
7+ {
8+ url : `${ baseUrl } /` ,
9+ lastModified : new Date ( ) ,
10+ changeFrequency : "yearly" ,
11+ priority : 1 ,
12+ } ,
13+ {
14+ url : `${ baseUrl } /enterprise` ,
15+ lastModified : new Date ( ) ,
16+ changeFrequency : "monthly" ,
17+ priority : 0.8 ,
18+ } ,
19+ {
20+ url : `${ baseUrl } /evals` ,
21+ lastModified : new Date ( ) ,
22+ changeFrequency : "monthly" ,
23+ priority : 0.8 ,
24+ } ,
25+ {
26+ url : `${ baseUrl } /privacy` ,
27+ lastModified : new Date ( ) ,
28+ changeFrequency : "yearly" ,
29+ priority : 0.5 ,
30+ } ,
31+ {
32+ url : `${ baseUrl } /terms` ,
33+ lastModified : new Date ( ) ,
34+ changeFrequency : "yearly" ,
35+ priority : 0.5 ,
36+ } ,
37+ ]
38+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments