Spaces:
Sleeping
Sleeping
duck3-create Claude Haiku 4.5 commited on
Commit ยท
c2ba620
1
Parent(s): de5bdb0
Add SEO metadata and search engine configuration
Browse files- Add comprehensive meta tags (description, keywords, og:, twitter:)
- Improve title with keyword inclusion
- Create sitemap.xml for search engine discovery
- Create robots.txt for crawl guidelines
- Enable proper indexing by Google and Naver
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
- static/index.html +12 -1
- static/robots.txt +9 -0
- static/sitemap.xml +9 -0
static/index.html
CHANGED
|
@@ -3,7 +3,18 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>YouTube Transcript</title>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.min.css">
|
| 8 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 9 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>YouTube Transcript - Free Subtitle Extractor</title>
|
| 7 |
+
<meta name="description" content="Free YouTube transcript extractor. Download subtitles in multiple formats (TXT, JSON, SRT, VTT) with support for multiple languages including Korean, English, Spanish, Japanese, and Portuguese.">
|
| 8 |
+
<meta name="keywords" content="YouTube transcript, subtitle extractor, YouTube subtitles, ์ ํ๋ธ ์๋ง, ์๋ง ์ถ์ถ, transcribe YouTube">
|
| 9 |
+
<meta name="author" content="YouTube Transcript">
|
| 10 |
+
<meta name="robots" content="index, follow">
|
| 11 |
+
<meta property="og:title" content="YouTube Transcript - Free Subtitle Extractor">
|
| 12 |
+
<meta property="og:description" content="Extract subtitles from YouTube videos in multiple formats and languages for free.">
|
| 13 |
+
<meta property="og:type" content="website">
|
| 14 |
+
<meta property="og:url" content="https://youtube-transcript-production-7407.up.railway.app/">
|
| 15 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 16 |
+
<meta name="twitter:title" content="YouTube Transcript - Free Subtitle Extractor">
|
| 17 |
+
<meta name="twitter:description" content="Extract subtitles from YouTube videos in multiple formats and languages for free.">
|
| 18 |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.min.css">
|
| 19 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 20 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
static/robots.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
User-agent: *
|
| 2 |
+
Allow: /
|
| 3 |
+
Disallow: /api/
|
| 4 |
+
|
| 5 |
+
# Crawl delay for respectful crawling
|
| 6 |
+
Crawl-delay: 1
|
| 7 |
+
|
| 8 |
+
# Sitemap location
|
| 9 |
+
Sitemap: https://youtube-transcript-production-7407.up.railway.app/sitemap.xml
|
static/sitemap.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
| 3 |
+
<url>
|
| 4 |
+
<loc>https://youtube-transcript-production-7407.up.railway.app/</loc>
|
| 5 |
+
<lastmod>2026-02-15</lastmod>
|
| 6 |
+
<changefreq>weekly</changefreq>
|
| 7 |
+
<priority>1.0</priority>
|
| 8 |
+
</url>
|
| 9 |
+
</urlset>
|