-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
149 lines (149 loc) · 5.05 KB
/
data.js
File metadata and controls
149 lines (149 loc) · 5.05 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
const data = [{
channel: "ProtoMax",
number: "999",
schedule: [{
"time": "12:00 AM",
"title": "Night Owl News",
"description": "Catch up on late-breaking stories while the world sleeps.",
"thumbnail": "./panel.jpg"
},
{
"time": "1:00 AM",
"title": "Dreamland Mysteries",
"description": "Explore strange and unsolved cases from the depths of the night.",
"thumbnail": "./panel.jpg"
},
{
"time": "2:00 AM",
"title": "Retro Tech Hour",
"description": "Dive into gadgets and gizmos from decades past.",
"thumbnail": "./panel.jpg"
},
{
"time": "3:00 AM",
"title": "Silent Cinema",
"description": "Classic black-and-white films with a modern twist.",
"thumbnail": "./panel.jpg"
},
{
"time": "4:00 AM",
"title": "Animated Archives",
"description": "Early morning cartoons from the golden era of animation.",
"thumbnail": "./panel.jpg"
},
{
"time": "5:00 AM",
"title": "Cosmic Stretch",
"description": "Wake up with space-themed yoga and meditations.",
"thumbnail": "./panel.jpg"
},
{
"time": "6:00 AM",
"title": "The AM Blend",
"description": "Coffee, headlines, and morning tunes to start your day.",
"thumbnail": "./panel.jpg"
},
{
"time": "7:00 AM",
"title": "Sunrise Showcase",
"description": "Community highlights and positive stories to inspire.",
"thumbnail": "./panel.jpg"
},
{
"time": "8:00 AM",
"title": "Breakfast Bytes",
"description": "A tech digest over eggs and toast.",
"thumbnail": "./panel.jpg"
},
{
"time": "9:00 AM",
"title": "Vintage Vault",
"description": "Relive the best of '80s and '90s sitcoms.",
"thumbnail": "./panel.jpg"
},
{
"time": "10:00 AM",
"title": "Curious Minds",
"description": "Educational journeys into history, science, and culture.",
"thumbnail": "./panel.jpg"
},
{
"time": "11:00 AM",
"title": "Reel Reviews",
"description": "Critics dive into classic films and cult favorites.",
"thumbnail": "./panel.jpg"
},
{
"time": "12:00 PM",
"title": "Lunchtime Live",
"description": "Midday interviews, performances, and headlines.",
"thumbnail": "./panel.jpg"
},
{
"time": "1:00 PM",
"title": "Art of the Edit",
"description": "Exploring iconic TV scenes and the art behind them.",
"thumbnail": "./panel.jpg"
},
{
"time": "2:00 PM",
"title": "Retro Game Arena",
"description": "Classic video game battles, tournaments, and commentary.",
"thumbnail": "./panel.jpg"
},
{
"time": "3:00 PM",
"title": "Afternoon Adventures",
"description": "Action-packed shows to fuel your afternoon.",
"thumbnail": "./panel.jpg"
},
{
"time": "4:00 PM",
"title": "Time Capsule TV",
"description": "Flashbacks to news, ads, and specials from years gone by.",
"thumbnail": "./panel.jpg"
},
{
"time": "5:00 PM",
"title": "ProtoPrime",
"description": "ProtoMax’s flagship news and entertainment hour.",
"thumbnail": "./panel.jpg"
},
{
"time": "6:00 PM",
"title": "Dinner Rush Drama",
"description": "Evening soap opera reruns with full vintage flair.",
"thumbnail": "./panel.jpg"
},
{
"time": "7:00 PM",
"title": "Studio Stories",
"description": "Behind-the-scenes looks at your favorite productions.",
"thumbnail": "./panel.jpg"
},
{
"time": "8:00 PM",
"title": "Retro Blockbuster",
"description": "Classic films from the '90s and 2000s in prime time.",
"thumbnail": "./panel.jpg"
},
{
"time": "9:00 PM",
"title": "Unsolved Prime",
"description": "Docuseries exploring mysterious events and conspiracies.",
"thumbnail": "./panel.jpg"
},
{
"time": "10:00 PM",
"title": "Night Tracks",
"description": "Music videos and live performances to wind down.",
"thumbnail": "./panel.jpg"
},
{
"time": "11:00 PM",
"title": "Final Word",
"description": "Late-night commentary and next-day previews.",
"thumbnail": "./panel.jpg"
}
]
}];