mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-08-04 14:37:45 +00:00
dbba172ed3
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
466 B
TypeScript
12 lines
466 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
const BASE = "https://ares.romys.my.id";
|
|
|
|
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 },
|
|
];
|
|
}
|