-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 2.98 KB
/
index.html
File metadata and controls
59 lines (53 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="canonical" href="https://screenpath.vercel.app/" />
<title>ScreenPath - Your calm path to the perfect movie</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="ScreenPath - Discover Movies Effortlessly" />
<meta name="apple-mobile-web-app-title" content="ScreenPath" />
<meta name="description" content="ScreenPath is a modern movie discovery platform that helps you explore trending films, ratings, and detailed information using a fast and intuitive interface." />
<meta name="keywords" content="movies, movie discovery, TMDB, film search, movie database, React movie app, movie explorer" />
<meta name="author" content="Dulanjaya Bhanu" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0a0a0a" />
<meta name="application-name" content="ScreenPath" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://screenpath.vercel.app/" />
<meta property="og:title" content="ScreenPath — Discover Movies Effortlessly" />
<meta property="og:description" content="Explore trending movies, discover ratings, and dive into detailed movie information with ScreenPath." />
<meta property="og:image" content="https://screenpath.vercel.app/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://screenpath.vercel.app/" />
<meta name="twitter:title" content="ScreenPath — Discover Movies Effortlessly" />
<meta name="twitter:description" content="Explore trending movies and detailed film information with ScreenPath." />
<meta name="twitter:image" content="https://screenpath.vercel.app/twitter-card.png" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "ScreenPath",
"url": "https://screenpath.vercel.app",
"description": "Discover movies, explore ratings, and find your next watch with ScreenPath.",
"potentialAction": {
"@type": "SearchAction",
"target": "https://screenpath.vercel.app/?query={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>