mirror of
https://github.com/RomySaputraSihananda/ares.git
synced 2026-08-26 09:08:15 +00:00
feat(web): ARES logo SVG + full SEO (metadata, sitemap, robots, favicon, per-page titles)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
6cd8959c2d
commit
daabb65f30
@@ -0,0 +1,11 @@
|
||||
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 },
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user