Add SEO metadata, sitemap, robots, and JSON-LD for search ranking.

Ship canonical/Open Graph/Twitter tags, WebApplication schema, and landing copy aimed at audio-to-YouTube queries.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Atakan Doğan Özban
2026-07-29 19:45:17 +02:00
co-authored by Cursor
parent 56880256e5
commit 2b9da11547
8 changed files with 131 additions and 8 deletions
+23
View File
@@ -0,0 +1,23 @@
export function JsonLd() {
const schema = {
"@context": "https://schema.org",
"@type": "WebApplication",
name: "Songs2VID",
url: "https://songs2vid.com",
operatingSystem: "Web",
applicationCategory: "MultimediaApplication",
description: "Online tool to convert audio files into YouTube videos.",
offers: {
"@type": "Offer",
price: "0",
priceCurrency: "USD",
},
};
return (
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }}
/>
);
}