Dunnnn/torpedo-java-thunder-boost
1
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>Ingredients - Torpedo Java</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://unpkg.com/feather-icons"></script>10 <style>11 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');12 body {13 font-family: 'Montserrat', sans-serif;14 background-color: #111827;15 color: white;16 }17 .ingredient-card {18 transition: all 0.3s ease;19 }20 .ingredient-card:hover {21 transform: translateY(-5px);22 }23 </style>24</head>25<body>26 <!-- Navigation -->27 <nav class="py-6 px-4 md:px-12 flex justify-between items-center bg-gray-900">28 <div class="flex items-center">29 <div class="w-12 h-12 rounded-lg flex items-center justify-center mr-3 overflow-hidden">30 <img src="https://huggingface.co/spaces/Dunnnn/torpedo-java-thunder-boost/resolve/main/images/torpedo-png.png" alt="Torpedo Java Logo" class="w-full h-full object-contain">31 </div>32 <span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-red-500 to-yellow-500">TORPEDO JAVA</span>33</div>34 <div class="hidden md:flex space-x-8">35 <a href="index.html" class="hover:text-red-400 transition">Home</a>36 <a href="shop.html" class="hover:text-red-400 transition">Shop</a>37 <a href="ingredients.html" class="text-red-400">Ingredients</a>38 <a href="about.html" class="hover:text-red-400 transition">About Us</a>39 <a href="how-it-works.html" class="hover:text-red-400 transition">How It Works</a>40 <a href="#" class="hover:text-red-400 transition">Testimonials</a>41 <a href="testimonials.html" class="hover:text-red-400 transition">Testimonials</a>42 <a href="faq.html" class="hover:text-red-400 transition">FAQ</a>43 <a href="privacy-policy.html" class="hover:text-red-400 transition">Privacy Policy</a>44 <a href="terms-of-service.html" class="hover:text-red-400 transition">Terms</a>45 <a href="shipping-policy.html" class="hover:text-red-400 transition">Shipping</a>46 <a href="returns.html" class="hover:text-red-400 transition">Returns</a>47</div>48 <a href="shop.html" class="bg-red-600 hover:bg-red-700 px-6 py-2 rounded-full font-bold transition transform hover:scale-105">49 ORDER NOW50 </a>51<button class="md:hidden">52 <i data-feather="menu"></i>53 </button>54 </nav>55 56 <!-- Main Content -->57 <main class="container mx-auto py-12 px-4">58 <h1 class="text-4xl font-bold mb-12 text-center">POWERFUL INGREDIENTS</h1>59 60 <div class="max-w-4xl mx-auto mb-16 text-center">61 <p class="text-xl text-gray-300">Torpedo Java combines 12 scientifically-selected ingredients from around the world to deliver maximum results. Each component was carefully chosen for its unique benefits in male vitality, energy, and performance.</p>62 </div>63 64 <!-- Ingredients Grid -->65 <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">66 <!-- Ingredient 1 -->67 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">68 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">69 <i data-feather="sun" class="text-white w-8 h-8"></i>70 </div>71 <h3 class="text-xl font-bold text-center mb-3">Maca Root Extract</h3>72 <p class="text-gray-400 text-center">Known as "Peruvian ginseng," Maca enhances stamina, libido, and fertility while reducing stress and anxiety. This ancient superfood is packed with essential vitamins and minerals.</p>73 </div>74 75 <!-- Ingredient 2 -->76 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">77 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">78 <i data-feather="activity" class="text-white w-8 h-8"></i>79 </div>80 <h3 class="text-xl font-bold text-center mb-3">Wolfberry Extract</h3>81 <p class="text-gray-400 text-center">Also known as Goji Berry, it's rich in antioxidants that protect cells from damage while supporting testosterone production and overall vitality.</p>82 </div>83 84 <!-- Ingredient 3 -->85 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">86 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">87 <i data-feather="heart" class="text-white w-8 h-8"></i>88 </div>89 <h3 class="text-xl font-bold text-center mb-3">Yam Extract</h3>90 <p class="text-gray-400 text-center">Wild Yam contains diosgenin, a precursor to DHEA which supports hormone production and cardiovascular health.</p>91 </div>92 93 <!-- Ingredient 4 -->94 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">95 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">96 <i data-feather="zap" class="text-white w-8 h-8"></i>97 </div>98 <h3 class="text-xl font-bold text-center mb-3">Mulberry</h3>99 <p class="text-gray-400 text-center">Contains resveratrol which supports blood flow and nitric oxide production for enhanced circulation and performance.</p>100 </div>101 102 <!-- Ingredient 5 -->103 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">104 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">105 <i data-feather="shield" class="text-white w-8 h-8"></i>106 </div>107 <h3 class="text-xl font-bold text-center mb-3">Oyster Peptide</h3>108 <p class="text-gray-400 text-center">Rich in zinc which is essential for testosterone production and prostate health. Also contains amino acids that support muscle growth and recovery.</p>109 </div>110 111 <!-- Ingredient 6 -->112 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">113 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">114 <i data-feather="droplet" class="text-white w-8 h-8"></i>115 </div>116 <h3 class="text-xl font-bold text-center mb-3">Raspberry</h3>117 <p class="text-gray-400 text-center">Contains ketones that help boost metabolism and energy levels while providing powerful antioxidants.</p>118 </div>119 120 <!-- Ingredient 7 -->121 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">122 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">123 <i data-feather="arrow-up" class="text-white w-8 h-8"></i>124 </div>125 <h3 class="text-xl font-bold text-center mb-3">L-Arginine</h3>126 <p class="text-gray-400 text-center">An amino acid that increases nitric oxide production, improving blood flow to muscles and enhancing performance and endurance.</p>127 </div>128 129 <!-- Ingredient 8 -->130 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">131 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">132 <i data-feather="target" class="text-white w-8 h-8"></i>133 </div>134 <h3 class="text-xl font-bold text-center mb-3">TongKat Ali</h3>135 <p class="text-gray-400 text-center">Also known as Longjack, this Malaysian herb boosts testosterone levels, increases muscle mass, and enhances sexual performance.</p>136 </div>137 138 <!-- Ingredient 9 -->139 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">140 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">141 <i data-feather="award" class="text-white w-8 h-8"></i>142 </div>143 <h3 class="text-xl font-bold text-center mb-3">Ginseng Extract</h3>144 <p class="text-gray-400 text-center">The "king of herbs" improves stamina, reduces fatigue, and enhances erectile function through increased nitric oxide production.</p>145 </div>146 147 <!-- Ingredient 10 -->148 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">149 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">150 <i data-feather="battery-charging" class="text-white w-8 h-8"></i>151 </div>152 <h3 class="text-xl font-bold text-center mb-3">Guarana Extract</h3>153 <p class="text-gray-400 text-center">A natural stimulant that provides clean energy without crashes, while also supporting cognitive function and focus.</p>154 </div>155 156 <!-- Ingredient 11 -->157 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">158 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">159 <i data-feather="trending-up" class="text-white w-8 h-8"></i>160 </div>161 <h3 class="text-xl font-bold text-center mb-3">Horny Goat Weed</h3>162 <p class="text-gray-400 text-center">Contains icariin which supports sexual function by increasing blood flow and acting as a natural PDE-5 inhibitor.</p>163 </div>164 165 <!-- Ingredient 12 -->166 <div class="bg-gray-800 rounded-xl p-6 ingredient-card">167 <div class="w-16 h-16 bg-red-600 rounded-full flex items-center justify-center mb-4 mx-auto">168 <i data-feather="anchor" class="text-white w-8 h-8"></i>169 </div>170 <h3 class="text-xl font-bold text-center mb-3">Oyster Powder</h3>171 <p class="text-gray-400 text-center">An excellent source of zinc which is crucial for testosterone production, immune function, and prostate health.</p>172 </div>173 </div>174 </main>175 <!-- Newsletter Section -->176 <section class="py-16 px-4 md:px-12 bg-gray-800 relative z-10">177 <div class="container mx-auto max-w-4xl text-center">178 <h2 class="text-2xl md:text-3xl font-bold mb-4">WANT HEALTH TIPS & OFFERS?</h2>179 <p class="text-gray-300 mb-6">Get science-backed wellness advice and exclusive discounts straight to your inbox.</p>180 <form class="flex flex-col sm:flex-row gap-2 justify-center">181 <input type="email" placeholder="Your email address" class="px-4 py-3 rounded-full text-gray-900 focus:outline-none sm:w-80">182 <button type="submit" class="bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded-full font-bold transition">183 SUBSCRIBE184 </button>185 </form>186 </div>187 </section>188 189 <!-- Footer -->190<footer class="bg-gray-900 py-12 px-4 md:px-12">191 <div class="container mx-auto">192 <div class="grid grid-cols-1 md:grid-cols-4 gap-8">193 <div>194 <h3 class="text-xl font-bold mb-4">TORPEDO JAVA</h3>195 <p class="text-gray-400 mb-4">Premium male enhancement drink powered by nature.</p>196 <div class="flex space-x-4">197 <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="facebook"></i></a>198 <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="instagram"></i></a>199 <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>200 </div>201 </div>202 <div>203 <h4 class="font-bold mb-4">PRODUCT</h4>204 <ul class="space-y-2">205 <li><a href="shop.html" class="text-gray-400 hover:text-white transition">Shop</a></li>206 <li><a href="ingredients.html" class="text-gray-400 hover:text-white transition">Ingredients</a></li>207 <li><a href="#" class="text-gray-400 hover:text-white transition">How It Works</a></li>208 <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>209 </ul>210 </div>211 <div>212 <h4 class="font-bold mb-4">COMPANY</h4>213 <ul class="space-y-2">214 <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>215 <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>216</ul>217 </div>218 <div>219 <h4 class="font-bold mb-4">LEGAL</h4>220 <ul class="space-y-2">221 <li><a href="privacy-policy.html" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>222<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>223 <li><a href="#" class="text-gray-400 hover:text-white transition">Shipping Policy</a></li>224 <li><a href="#" class="text-gray-400 hover:text-white transition">Returns</a></li>225 </ul>226 </div>227 </div>228 <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">229 <p>© 2025 Torpedo Java. All rights reserved.</p>230 </div>231 </div>232 </footer>233 234 <script>235 feather.replace();236 </script>237</body>238</html>