Ship canonical/Open Graph/Twitter tags, WebApplication schema, and landing copy aimed at audio-to-YouTube queries. Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
417 B
TypeScript
21 lines
417 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
const SITE_URL = "https://songs2vid.com";
|
|
|
|
export default function sitemap(): MetadataRoute.Sitemap {
|
|
return [
|
|
{
|
|
url: SITE_URL,
|
|
lastModified: new Date(),
|
|
changeFrequency: "daily",
|
|
priority: 1.0,
|
|
},
|
|
{
|
|
url: `${SITE_URL}/privacy`,
|
|
lastModified: new Date(),
|
|
changeFrequency: "monthly",
|
|
priority: 0.3,
|
|
},
|
|
];
|
|
}
|