-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhy.php
More file actions
48 lines (42 loc) · 2.28 KB
/
why.php
File metadata and controls
48 lines (42 loc) · 2.28 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
<?php echo '
<section class="py-12 px-6 max-w-7xl mx-auto
bg-white text-gray-900
dark:bg-gray-900 dark:text-gray-100
eyecare:bg-[#fdf6e3] eyecare:text-[#586e75]
transition-colors duration-300">
<h2 class="text-3xl font-bold text-center mb-8
text-gray-900 dark:text-gray-100 eyecare:text-[#586e75]
transition-colors duration-300">
Awesome Features That Make Streaming Easy
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-10">
<div class="flex flex-col items-center text-center p-6 border rounded-lg
border-gray-200 dark:border-gray-700 eyecare:border-[#93a1a1] shadow-sm
hover:shadow-lg transition-shadow duration-300">
<div class="mb-4 text-4xl text-indigo-600 dark:text-indigo-400 eyecare:text-[#2aa198]">
<i class="fas fa-bolt"></i>
</div>
<h3 class="text-xl font-semibold mb-2" id="loadin">Fast Streaming</h3>
<p class="text-sm leading-relaxed">Enjoy ultra-fast streaming of your favorite movies and trailers without buffering delays.</p>
</div>
<div class="flex flex-col items-center text-center p-6 border rounded-lg
border-gray-200 dark:border-gray-700 eyecare:border-[#93a1a1] shadow-sm
hover:shadow-lg transition-shadow duration-300">
<div class="mb-4 text-4xl text-indigo-600 dark:text-indigo-400 eyecare:text-[#2aa198]">
<i class="fas fa-film"></i>
</div>
<h3 class="text-xl font-semibold mb-2" id="loadin">Latest Releases</h3>
<p class="text-sm leading-relaxed">Stay up to date with the newest movies and trailers from all your favorite genres.</p>
</div>
<div class="flex flex-col items-center text-center p-6 border rounded-lg
border-gray-200 dark:border-gray-700 eyecare:border-[#93a1a1] shadow-sm
hover:shadow-lg transition-shadow duration-300">
<div class="mb-4 text-4xl text-indigo-600 dark:text-indigo-400 eyecare:text-[#2aa198]">
<i class="fas fa-mobile-alt"></i>
</div>
<h3 class="text-xl font-semibold mb-2" id="loadin">Mobile Friendly</h3>
<p class="text-sm leading-relaxed">Watch trailers and movies seamlessly on any device, anytime, anywhere.</p>
</div>
</div>
</section>
';?>