Spaces:
Runtime error
Runtime error
File size: 10,458 Bytes
a5778f2 | 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | {% extends "base.html" %}
{% block title %}Too Many Cables - Premium Cables & Tech Accessories{% endblock %}
{% block content %}
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">Premium Cables for Every Connection</h1>
<p class="hero-subtitle">From USB-C to HDMI, we've got the high-quality cables and accessories you need. Fast shipping, lifetime warranty, and 24/7 support.</p>
<div class="hero-actions">
<a href="{{ url_for('products') }}" class="btn btn-primary btn-large">Shop Now</a>
<a href="#" class="btn btn-outline btn-large chat-trigger-btn">Get Help π¬</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features">
<div class="container">
<h2 class="section-title">Why Choose Too Many Cables?</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">β‘</div>
<h3>Fast & Reliable</h3>
<p>High-speed data transfer and charging with premium materials and gold-plated connectors.</p>
</div>
<div class="feature-card">
<div class="feature-icon">π‘οΈ</div>
<h3>Lifetime Warranty</h3>
<p>We stand behind our products with a comprehensive lifetime warranty on all cables.</p>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<h3>Fast Shipping</h3>
<p>Free shipping on orders over $25. Most orders ship same day and arrive within 2-3 business days.</p>
</div>
<div class="feature-card">
<div class="feature-icon">π¬</div>
<h3>24/7 Support</h3>
<p>Get instant help with our AI-powered chat support, available 24/7 for all your questions.</p>
</div>
</div>
</div>
</section>
<!-- Popular Products Section -->
<section class="popular-products">
<div class="container">
<h2 class="section-title">Popular Products</h2>
<div class="products-grid">
<div class="product-card">
<div class="product-image">π</div>
<h3>USB-C to USB-C Cable</h3>
<p class="product-description">60W fast charging, 10Gbps data transfer, 6ft length</p>
<div class="product-price">$19.99</div>
<div class="product-rating">βββββ (1,247 reviews)</div>
<button class="btn btn-primary" onclick="showProductDetails('usb-c-cable')">More Details</button>
</div>
<div class="product-card">
<div class="product-image">πΊ</div>
<h3>4K HDMI Cable</h3>
<p class="product-description">8K@60Hz, 4K@120Hz, HDR10+, 10ft premium cable</p>
<div class="product-price">$24.99</div>
<div class="product-rating">βββββ (856 reviews)</div>
<button class="btn btn-primary" onclick="showProductDetails('4k-hdmi-cable')">More Details</button>
</div>
<div class="product-card">
<div class="product-image">π</div>
<h3>Multi-Port Charging Hub</h3>
<p class="product-description">6 ports, 100W total, USB-C PD, smart charging</p>
<div class="product-price">$49.99</div>
<div class="product-rating">βββββ (692 reviews)</div>
<button class="btn btn-primary" onclick="showProductDetails('charging-hub')">More Details</button>
</div>
<div class="product-card">
<div class="product-image">π</div>
<h3>USB-C Hub Adapter</h3>
<p class="product-description">7-in-1 hub with HDMI, USB-A, SD card, Ethernet</p>
<div class="product-price">$34.99</div>
<div class="product-rating">βββββ (1,104 reviews)</div>
<button class="btn btn-primary" onclick="showProductDetails('usb-c-hub')">More Details</button>
</div>
</div>
<div class="section-cta">
<a href="{{ url_for('products') }}" class="btn btn-outline">View All Products</a>
</div>
</div>
</section>
<!-- Customer Support CTA -->
<section class="support-cta">
<div class="container">
<div class="cta-content">
<h2>Need Help Choosing the Right Cable?</h2>
<p>Our AI-powered customer service is available 24/7 to help you find the perfect solution for your needs.</p>
<div class="cta-actions">
<a href="#" class="btn btn-primary btn-large chat-trigger-btn">Start Live Chat π¬</a>
<a href="{{ url_for('products') }}" class="btn btn-outline btn-large">Browse Products</a>
</div>
</div>
<div class="cta-features">
<div class="cta-feature">
<span class="feature-icon">π€</span>
<span>AI-Powered Support</span>
</div>
<div class="cta-feature">
<span class="feature-icon">β‘</span>
<span>Instant Responses</span>
</div>
<div class="cta-feature">
<span class="feature-icon">π―</span>
<span>Personalized Recommendations</span>
</div>
</div>
</div>
</section>
<!-- Customer Reviews Section -->
<section class="reviews">
<div class="container">
<h2 class="section-title">What Our Customers Say</h2>
<div class="reviews-grid">
<div class="review-card">
<div class="review-rating">βββββ</div>
<p class="review-text">"Amazing quality cables! My USB-C cable has been working perfectly for over a year now. The customer service chat helped me choose the right one."</p>
<div class="review-author">- Sarah M., Software Developer</div>
</div>
<div class="review-card">
<div class="review-rating">βββββ</div>
<p class="review-text">"Fast shipping and great prices. The HDMI cable works flawlessly with my 4K monitor. Will definitely order again!"</p>
<div class="review-author">- Mike R., Graphic Designer</div>
</div>
<div class="review-card">
<div class="review-rating">βββββ</div>
<p class="review-text">"The AI chat support is incredible! Got help immediately at 2AM when I needed to find a specific adapter. Highly recommend!"</p>
<div class="review-author">- Jennifer L., Marketing Manager</div>
</div>
</div>
</div>
</section>
<!-- Product Details Modal -->
<div id="product-details-modal" class="modal" style="display: none;">
<div class="modal-content">
<div class="modal-header">
<h2 id="product-modal-title">Product Details</h2>
<span class="close-modal" onclick="closeProductModal()">×</span>
</div>
<div class="modal-body">
<div id="product-modal-content" class="product-details-content">
<div class="loading">Loading product specifications...</div>
</div>
</div>
</div>
</div>
<style>
.product-details-content {
max-height: 70vh;
overflow-y: auto;
line-height: 1.6;
}
.product-details-content h3 {
color: #2c3e50;
margin-top: 20px;
margin-bottom: 10px;
}
.product-details-content ul {
margin: 10px 0;
padding-left: 20px;
}
.product-details-content li {
margin: 5px 0;
}
.product-details-content strong {
color: #2980b9;
}
.loading {
text-align: center;
padding: 40px;
color: #7f8c8d;
}
</style>
<script>
async function showProductDetails(productName) {
const modal = document.getElementById('product-details-modal');
const title = document.getElementById('product-modal-title');
const content = document.getElementById('product-modal-content');
// Show modal with loading state
modal.style.display = 'flex';
title.textContent = 'Loading Product Details...';
content.innerHTML = '<div class="loading">Loading product specifications...</div>';
try {
const response = await fetch(`/api/product/${productName}`);
const data = await response.json();
if (data.success) {
// Set product title
const productTitles = {
'usb-c-cable': 'USB-C to USB-C Cable',
'4k-hdmi-cable': '4K HDMI Cable',
'charging-hub': 'Multi-Port Charging Hub',
'usb-c-hub': 'USB-C Hub Adapter'
};
title.textContent = productTitles[productName] || 'Product Details';
// Format and display specifications
const specs = data.specifications;
const formattedSpecs = formatProductSpecs(specs);
content.innerHTML = formattedSpecs;
} else {
content.innerHTML = '<div class="error">Failed to load product specifications. Please try again.</div>';
}
} catch (error) {
console.error('Error fetching product details:', error);
content.innerHTML = '<div class="error">Failed to load product specifications. Please try again.</div>';
}
}
function formatProductSpecs(specs) {
// Convert the raw specifications text into formatted HTML
let formatted = specs
.replace(/\n\n/g, '</p><p>')
.replace(/\n/g, '<br>')
.replace(/\*\*(.*?)\*\*/g, '<strong>$1</strong>')
.replace(/^# (.*?)$/gm, '<h3>$1</h3>')
.replace(/^## (.*?)$/gm, '<h4>$1</h4>')
.replace(/^### (.*?)$/gm, '<h5>$1</h5>');
return `<div class="specs-content"><p>${formatted}</p></div>`;
}
function closeProductModal() {
const modal = document.getElementById('product-details-modal');
modal.style.display = 'none';
}
// Close modal when clicking outside
document.addEventListener('click', function(e) {
const modal = document.getElementById('product-details-modal');
if (e.target === modal) {
closeProductModal();
}
});
</script>
{% endblock %}
|