-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (114 loc) · 4.94 KB
/
Copy pathindex.html
File metadata and controls
121 lines (114 loc) · 4.94 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Search Console Verification -->
<meta name="google-site-verification" content="jKglyA30QnuhF8JZNHzHBRf4KxhBgBLG49U39BY5px8" />
<!-- Primary SEO -->
<title>FishyStream — Your Personal Streaming Hub</title>
<meta
name="description"
content="Watch movies and TV shows online with FishyStream. Your personal streaming hub — stream what you love, everywhere, on any device."
/>
<meta
name="keywords"
content="streaming, watch movies online, watch TV shows, stream free, FishyStream, online video"
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://fishystream-app.pages.dev/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://fishystream-app.pages.dev/" />
<meta property="og:site_name" content="FishyStream" />
<meta property="og:title" content="FishyStream — Your Personal Streaming Hub" />
<meta
property="og:description"
content="Watch movies and TV shows online with FishyStream. Stream what you love, everywhere, on any device."
/>
<meta property="og:image" content="https://fishystream-app.pages.dev/icons/pwa-512x512.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="FishyStream — Your Personal Streaming Hub" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="FishyStream — Your Personal Streaming Hub" />
<meta
name="twitter:description"
content="Watch movies and TV shows online with FishyStream. Stream what you love, everywhere, on any device."
/>
<meta name="twitter:image" content="https://fishystream-app.pages.dev/icons/pwa-512x512.png" />
<!-- PWA / Mobile -->
<meta name="theme-color" content="#0a0a12" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="FishyStream" />
<!-- Icons -->
<link rel="icon" type="image/png" sizes="512x512" href="/icons/pwa-512x512.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/icons/pwa-192x192.png" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link rel="shortcut icon" href="/icons/pwa-192x192.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "FishyStream",
"alternateName": ["Fishy Stream", "FishyStream App"],
"url": "https://fishystream-app.pages.dev/",
"description": "Your personal streaming hub. Watch movies and TV shows online, everywhere.",
"inLanguage": "en-US",
"publisher": {
"@type": "Organization",
"name": "FishyStream",
"url": "https://fishystream-app.pages.dev/",
"logo": {
"@type": "ImageObject",
"url": "https://fishystream-app.pages.dev/icons/pwa-512x512.png",
"width": 512,
"height": 512
}
},
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://fishystream-app.pages.dev/search?q={search_term_string}"
},
"query-input": "required name=search_term_string"
}
}
</script>
</head>
<body style="background-color: #0a0a12; color: #ffffff; margin: 0">
<noscript>
<div
style="
padding: 2rem;
text-align: center;
font-family: system-ui;
color: #ccc;
background: #0a0a12;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
"
>
<img src="/icons/pwa-192x192.png" alt="FishyStream logo" width="96" height="96" />
<h1 style="color: #ffffff; font-size: 2rem; margin: 0">FishyStream</h1>
<p style="max-width: 480px; margin: 0">
FishyStream requires JavaScript to run. Please enable it in your browser settings.
</p>
</div>
</noscript>
<div id="root"></div>
<script type="module" src="/src/app/main.tsx"></script>
</body>
</html>