mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-08-21 14:48:21 +00:00
12 lines
475 B
TypeScript
12 lines
475 B
TypeScript
import type { MetadataRoute } from "next";
|
|||
|
|
|
||
|
|
const BASE = "https://ares-six-peach.vercel.app";
|
||
|
|
|
||
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
||
|
|
return [
|
||
|
|
{ url: BASE, lastModified: new Date(), changeFrequency: "hourly", priority: 1.0 },
|
||
|
|
{ url: `${BASE}/trades`, lastModified: new Date(), changeFrequency: "hourly", priority: 0.9 },
|
||
|
|
{ url: `${BASE}/backtest`,lastModified: new Date(), changeFrequency: "monthly", priority: 0.7 },
|
||
|
|
];
|
||
|
|
}
|