Rony00 commited on
Commit
c049be9
·
verified ·
1 Parent(s): 5c66273

https://comavidstcp.netlify.app/

Browse files
Files changed (2) hide show
  1. index.html +23 -25
  2. videos.html +160 -0
index.html CHANGED
@@ -3,8 +3,8 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>MyWebsite - Home</title>
7
- <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
@@ -16,31 +16,29 @@
16
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
17
  <div class="flex justify-between h-16">
18
  <div class="flex items-center">
19
- <span class="text-xl font-bold text-blue-600">MyWebsite</span>
20
- </div>
21
  <div class="flex items-center space-x-8">
22
  <a href="index.html" class="text-blue-600 font-medium">Home</a>
23
  <a href="about.html" class="text-gray-600 hover:text-blue-600 transition-colors">About</a>
24
- <a href="services.html" class="text-gray-600 hover:text-blue-600 transition-colors">Services</a>
25
- <a href="contact.html" class="text-gray-600 hover:text-blue-600 transition-colors">Contact</a>
26
  </div>
27
  </div>
28
  </div>
29
  </nav>
30
-
31
  <!-- Hero Section -->
32
  <section class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-20">
33
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
34
- <h1 class="text-5xl font-bold mb-6">Welcome to MyWebsite</h1>
35
- <p class="text-xl mb-8 max-w-2xl mx-auto">A modern, responsive website built with Tailwind CSS and beautiful animations.</p>
36
  <div class="space-x-4">
37
- <a href="about.html" class="bg-white text-blue-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition-colors">Learn More</a>
38
  <a href="contact.html" class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-blue-600 transition-colors">Get Started</a>
39
  </div>
40
  </div>
41
  </section>
42
-
43
- <!-- Features Section -->
44
  <section class="py-16 bg-white">
45
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
46
  <div class="text-center mb-12">
@@ -50,35 +48,35 @@
50
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
51
  <div class="text-center p-6">
52
  <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
53
- <i data-feather="zap" class="text-blue-600"></i>
54
  </div>
55
- <h3 class="text-xl font-semibold mb-2">Fast Performance</h3>
56
- <p class="text-gray-600">Lightning-fast loading times and smooth animations for the best user experience.</p>
57
  </div>
58
  <div class="text-center p-6">
59
  <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
60
- <i data-feather="smartphone" class="text-green-600"></i>
61
  </div>
62
- <h3 class="text-xl font-semibold mb-2">Responsive Design</h3>
63
- <p class="text-gray-600">Looks great on all devices, from mobile phones to desktop computers.</p>
64
  </div>
65
  <div class="text-center p-6">
66
  <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
67
- <i data-feather="code" class="text-purple-600"></i>
68
  </div>
69
- <h3 class="text-xl font-semibold mb-2">Modern Tech</h3>
70
- <p class="text-gray-600">Built with the latest web technologies and best practices.</p>
71
  </div>
72
  </div>
73
- </div>
74
  </section>
75
 
76
  <!-- Footer -->
77
  <footer class="bg-gray-800 text-white py-8">
78
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
79
  <div class="text-center">
80
- <p>&copy; 2024 MyWebsite. All rights reserved.</p>
81
- </div>
82
  </div>
83
  </footer>
84
 
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ComaVids - Home</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
 
16
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
17
  <div class="flex justify-between h-16">
18
  <div class="flex items-center">
19
+ <span class="text-xl font-bold text-blue-600">ComaVids</span>
20
+ </div>
21
  <div class="flex items-center space-x-8">
22
  <a href="index.html" class="text-blue-600 font-medium">Home</a>
23
  <a href="about.html" class="text-gray-600 hover:text-blue-600 transition-colors">About</a>
24
+ <a href="videos.html" class="text-gray-600 hover:text-blue-600 transition-colors">Videos</a>
25
+ <a href="contact.html" class="text-gray-600 hover:text-blue-600 transition-colors">Contact</a>
26
  </div>
27
  </div>
28
  </div>
29
  </nav>
 
30
  <!-- Hero Section -->
31
  <section class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-20">
32
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center hero-content">
33
+ <h1 class="text-5xl font-bold mb-6">Welcome to ComaVids</h1>
34
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Your premier destination for high-quality video content and streaming services.</p>
35
  <div class="space-x-4">
36
+ <a href="videos.html" class="bg-white text-blue-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition-colors">Browse Videos</a>
37
  <a href="contact.html" class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-blue-600 transition-colors">Get Started</a>
38
  </div>
39
  </div>
40
  </section>
41
+ <!-- Features Section -->
 
42
  <section class="py-16 bg-white">
43
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
44
  <div class="text-center mb-12">
 
48
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
49
  <div class="text-center p-6">
50
  <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
51
+ <i data-feather="video" class="text-blue-600"></i>
52
  </div>
53
+ <h3 class="text-xl font-semibold mb-2">HD Quality</h3>
54
+ <p class="text-gray-600">Crystal clear high-definition videos with superior audio quality.</p>
55
  </div>
56
  <div class="text-center p-6">
57
  <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
58
+ <i data-feather="play-circle" class="text-green-600"></i>
59
  </div>
60
+ <h3 class="text-xl font-semibold mb-2">Seamless Streaming</h3>
61
+ <p class="text-gray-600">Buffer-free streaming experience across all your devices.</p>
62
  </div>
63
  <div class="text-center p-6">
64
  <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
65
+ <i data-feather="users" class="text-purple-600"></i>
66
  </div>
67
+ <h3 class="text-xl font-semibold mb-2">Community Driven</h3>
68
+ <p class="text-gray-600">Content curated by and for our amazing community of viewers.</p>
69
  </div>
70
  </div>
71
+ </div>
72
  </section>
73
 
74
  <!-- Footer -->
75
  <footer class="bg-gray-800 text-white py-8">
76
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
77
  <div class="text-center">
78
+ <p>&copy; 2024 ComaVids. All rights reserved.</p>
79
+ </div>
80
  </div>
81
  </footer>
82
 
videos.html ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ComaVids - Videos</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ </head>
13
+ <body class="bg-gray-50">
14
+ <!-- Navigation -->
15
+ <nav class="bg-white shadow-sm">
16
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
17
+ <div class="flex justify-between h-16">
18
+ <div class="flex items-center">
19
+ <span class="text-xl font-bold text-blue-600">ComaVids</span>
20
+ </div>
21
+ <div class="flex items-center space-x-8">
22
+ <a href="index.html" class="text-gray-600 hover:text-blue-600 transition-colors">Home</a>
23
+ <a href="about.html" class="text-gray-600 hover:text-blue-600 transition-colors">About</a>
24
+ <a href="videos.html" class="text-blue-600 font-medium">Videos</a>
25
+ <a href="contact.html" class="text-gray-600 hover:text-blue-600 transition-colors">Contact</a>
26
+ </div>
27
+ </div>
28
+ </div>
29
+ </nav>
30
+
31
+ <!-- Videos Section -->
32
+ <section class="py-16 bg-white">
33
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
34
+ <div class="text-center mb-12">
35
+ <h1 class="text-4xl font-bold text-gray-900 mb-4">Our Video Collection</h1>
36
+ <p class="text-gray-600 max-w-2xl mx-auto">Explore our extensive library of high-quality video content</p>
37
+ </div>
38
+
39
+ <!-- Video Grid -->
40
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12">
41
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow">
42
+ <div class="relative pb-[56.25%] bg-gray-200">
43
+ <img src="http://static.photos/technology/640x360/1" alt="Technology Video" class="absolute h-full w-full object-cover">
44
+ </div>
45
+ <div class="p-6">
46
+ <h3 class="text-xl font-semibold mb-2">Technology Insights</h3>
47
+ <p class="text-gray-600 mb-4">Latest trends and innovations in the tech world</p>
48
+ <div class="flex justify-between items-center text-sm text-gray-500">
49
+ <span>45 min</span>
50
+ <span>HD</span>
51
+ </div>
52
+ </div>
53
+ </div>
54
+
55
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow">
56
+ <div class="relative pb-[56.25%] bg-gray-200">
57
+ <img src="http://static.photos/travel/640x360/2" alt="Travel Video" class="absolute h-full w-full object-cover">
58
+ </div>
59
+ <div class="p-6">
60
+ <h3 class="text-xl font-semibold mb-2">World Travel Guide</h3>
61
+ <p class="text-gray-600 mb-4">Explore beautiful destinations around the globe</p>
62
+ <div class="flex justify-between items-center text-sm text-gray-500">
63
+ <span>28 min</span>
64
+ <span>4K</span>
65
+ </div>
66
+ </div>
67
+ </div>
68
+
69
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow">
70
+ <div class="relative pb-[56.25%] bg-gray-200">
71
+ <img src="http://static.photos/education/640x360/3" alt="Education Video" class="absolute h-full w-full object-cover">
72
+ </div>
73
+ <div class="p-6">
74
+ <h3 class="text-xl font-semibold mb-2">Learning Series</h3>
75
+ <p class="text-gray-600 mb-4">Educational content for skill development</p>
76
+ <div class="flex justify-between items-center text-sm text-gray-500">
77
+ <span>1h 15m</span>
78
+ <span>HD</span>
79
+ </div>
80
+ </div>
81
+ </div>
82
+
83
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow">
84
+ <div class="relative pb-[56.25%] bg-gray-200">
85
+ <img src="http://static.photos/nature/640x360/4" alt="Nature Video" class="absolute h-full w-full object-cover">
86
+ </div>
87
+ <div class="p-6">
88
+ <h3 class="text-xl font-semibold mb-2">Nature Wonders</h3>
89
+ <p class="text-gray-600 mb-4">Breathtaking footage of natural landscapes</p>
90
+ <div class="flex justify-between items-center text-sm text-gray-500">
91
+ <span>36 min</span>
92
+ <span>4K</span>
93
+ </div>
94
+ </div>
95
+ </div>
96
+
97
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow">
98
+ <div class="relative pb-[56.25%] bg-gray-200">
99
+ <img src="http://static.photos/food/640x360/5" alt="Food Video" class="absolute h-full w-full object-cover">
100
+ </div>
101
+ <div class="p-6">
102
+ <h3 class="text-xl font-semibold mb-2">Culinary Arts</h3>
103
+ <p class="text-gray-600 mb-4">Master the art of cooking with expert chefs</p>
104
+ <div class="flex justify-between items-center text-sm text-gray-500">
105
+ <span>52 min</span>
106
+ <span>HD</span>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow">
112
+ <div class="relative pb-[56.25%] bg-gray-200">
113
+ <img src="http://static.photos/sport/640x360/6" alt="Sports Video" class="absolute h-full w-full object-cover">
114
+ </div>
115
+ <div class="p-6">
116
+ <h3 class="text-xl font-semibold mb-2">Sports Highlights</h3>
117
+ <p class="text-gray-600 mb-4">Exciting moments from various sports events</p>
118
+ <div class="flex justify-between items-center text-sm text-gray-500">
119
+ <span>1h 8m</span>
120
+ <span>HD</span>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Call to Action -->
127
+ <div class="text-center">
128
+ <h2 class="text-2xl font-bold text-gray-900 mb-4">Want More Content?</h2>
129
+ <p class="text-gray-600 mb-6">Subscribe to our premium plan for unlimited access to all videos</p>
130
+ <a href="contact.html" class="bg-blue-600 text-white px-8 py-3 rounded-lg font-medium hover:bg-blue-700 transition-colors">Subscribe Now</a>
131
+ </div>
132
+ </div>
133
+ </section>
134
+
135
+ <!-- Footer -->
136
+ <footer class="bg-gray-800 text-white py-8">
137
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
138
+ <div class="text-center">
139
+ <p>&copy; 2024 ComaVids. All rights reserved.</p>
140
+ </div>
141
+ </div>
142
+ </footer>
143
+
144
+ <script>
145
+ // Initialize Feather Icons
146
+ feather.replace();
147
+
148
+ // Animation for video cards
149
+ document.addEventListener('DOMContentLoaded', function() {
150
+ anime({
151
+ targets: '.bg-white.rounded-lg',
152
+ translateY: [20, 0],
153
+ opacity: [0, 1],
154
+ delay: anime.stagger(100),
155
+ easing: 'easeOutCubic'
156
+ });
157
+ });
158
+ </script>
159
+ </body>
160
+ </html>