xlorfx commited on
Commit
027aa88
·
verified ·
1 Parent(s): e0ea42e

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +83 -32
  2. prompts.txt +3 -1
index.html CHANGED
@@ -17,7 +17,37 @@
17
  }
18
 
19
  .hero-gradient {
20
- background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e293b 100%);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  }
22
 
23
  .channel-card {
@@ -74,6 +104,19 @@
74
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.8);
75
  }
76
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  </style>
78
  </head>
79
  <body>
@@ -98,38 +141,46 @@
98
  </div>
99
  </header>
100
 
101
- <!-- Hero Section -->
102
- <section id="home" class="hero-gradient pt-32 pb-20 px-6">
103
- <div class="container mx-auto flex flex-col md:flex-row items-center">
104
- <div class="md:w-1/2 mb-12 md:mb-0">
105
- <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
106
- <span class="bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">A Melhor</span> Experiência em IPTV
107
- </h1>
108
- <p class="text-xl text-gray-300 mb-8">
109
- Mais de 15.000 canais em Full HD/4K, filmes, séries e esportes ao vivo.
110
- Transmissão estável em qualquer dispositivo, a qualquer hora.
111
- </p>
112
- <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
113
- <a href="#pricing" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium text-center transition">
114
- Assinar Agora
115
- </a>
116
- <a href="#channels" class="border border-blue-500 text-blue-400 hover:bg-blue-900/30 px-6 py-3 rounded-lg font-medium text-center transition">
117
- Ver Canais
118
- </a>
 
 
 
 
 
 
 
 
119
  </div>
120
- </div>
121
- <div class="md:w-1/2 relative">
122
- <img src="https://images.unsplash.com/photo-1603202662742-7a35f6f20b8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
123
- alt="IPTV Streaming"
124
- class="rounded-xl shadow-2xl glow border border-blue-500/30">
125
- <div class="absolute -bottom-5 -left-5 bg-blue-600/20 backdrop-blur-sm p-4 rounded-xl border border-blue-500/30">
126
- <div class="flex items-center">
127
- <div class="bg-blue-500 p-2 rounded-lg mr-3">
128
- <i class="fas fa-play text-white"></i>
129
- </div>
130
- <div>
131
- <p class="text-sm text-gray-300">Assistindo agora</p>
132
- <p class="font-medium">Premier League</p>
133
  </div>
134
  </div>
135
  </div>
 
17
  }
18
 
19
  .hero-gradient {
20
+ position: relative;
21
+ overflow: hidden;
22
+ height: 100vh;
23
+ }
24
+
25
+ .video-background {
26
+ position: absolute;
27
+ top: 0;
28
+ left: 0;
29
+ width: 100%;
30
+ height: 100%;
31
+ z-index: 0;
32
+ overflow: hidden;
33
+ }
34
+
35
+ .video-overlay {
36
+ position: absolute;
37
+ top: 0;
38
+ left: 0;
39
+ width: 100%;
40
+ height: 100%;
41
+ background-color: rgba(15, 23, 42, 0.7);
42
+ z-index: 1;
43
+ }
44
+
45
+ .hero-content {
46
+ position: relative;
47
+ z-index: 2;
48
+ height: 100%;
49
+ display: flex;
50
+ align-items: center;
51
  }
52
 
53
  .channel-card {
 
104
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.8);
105
  }
106
  }
107
+
108
+ /* Estilo para o iframe do YouTube */
109
+ .youtube-iframe {
110
+ position: absolute;
111
+ top: 50%;
112
+ left: 50%;
113
+ width: 100vw;
114
+ height: 56.25vw; /* 16:9 aspect ratio */
115
+ min-height: 100vh;
116
+ min-width: 177.77vh; /* 16:9 aspect ratio */
117
+ transform: translate(-50%, -50%);
118
+ pointer-events: none;
119
+ }
120
  </style>
121
  </head>
122
  <body>
 
141
  </div>
142
  </header>
143
 
144
+ <!-- Hero Section with YouTube Video Background -->
145
+ <section id="home" class="hero-gradient">
146
+ <!-- YouTube Video Background -->
147
+ <div class="video-background">
148
+ <iframe class="youtube-iframe" src="https://www.youtube.com/embed/uo1GEL7pVRk?autoplay=1&mute=1&loop=1&playlist=uo1GEL7pVRk&controls=0&disablekb=1&fs=0&modestbranding=1&rel=0&showinfo=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
149
+ <div class="video-overlay"></div>
150
+ </div>
151
+
152
+ <div class="container mx-auto px-6 hero-content">
153
+ <div class="flex flex-col md:flex-row items-center w-full">
154
+ <div class="md:w-1/2 mb-12 md:mb-0">
155
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
156
+ <span class="bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">A Melhor</span> Experiência em IPTV
157
+ </h1>
158
+ <p class="text-xl text-gray-300 mb-8">
159
+ Mais de 15.000 canais em Full HD/4K, filmes, séries e esportes ao vivo.
160
+ Transmissão estável em qualquer dispositivo, a qualquer hora.
161
+ </p>
162
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
163
+ <a href="#pricing" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium text-center transition">
164
+ Assinar Agora
165
+ </a>
166
+ <a href="#channels" class="border border-blue-500 text-blue-400 hover:bg-blue-900/30 px-6 py-3 rounded-lg font-medium text-center transition">
167
+ Ver Canais
168
+ </a>
169
+ </div>
170
  </div>
171
+ <div class="md:w-1/2 relative">
172
+ <img src="https://images.unsplash.com/photo-1603202662742-7a35f6f20b8e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
173
+ alt="IPTV Streaming"
174
+ class="rounded-xl shadow-2xl glow border border-blue-500/30">
175
+ <div class="absolute -bottom-5 -left-5 bg-blue-600/20 backdrop-blur-sm p-4 rounded-xl border border-blue-500/30">
176
+ <div class="flex items-center">
177
+ <div class="bg-blue-500 p-2 rounded-lg mr-3">
178
+ <i class="fas fa-play text-white"></i>
179
+ </div>
180
+ <div>
181
+ <p class="text-sm text-gray-300">Assistindo agora</p>
182
+ <p class="font-medium">Premier League</p>
183
+ </div>
184
  </div>
185
  </div>
186
  </div>
prompts.txt CHANGED
@@ -1 +1,3 @@
1
- crie uma landing page moderna, atratativa com imagens de alta resolução para iptv, com 3 tipos de planos, o mensal por 39,99, o triemestral por 114,00 e anual por 419,00. o contato deve ser diertamente no whatsapp
 
 
 
1
+ crie uma landing page moderna, atratativa com imagens de alta resolução para iptv, com 3 tipos de planos, o mensal por 39,99, o triemestral por 114,00 e anual por 419,00. o contato deve ser diertamente no whatsapp
2
+ coloque uma cena em video mp4 de fundo da pagina ou de futebol
3
+ Insira esse video de fundo https://www.youtube.com/watch?v=uo1GEL7pVRk