prole/www/soundBlock/index.html

105 lines
5.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>prole.soundBlock - Sound Isolation Made Easy | sound.prole.org</title>
<link rel="stylesheet" href="style.css"> <!-- Link to your CSS file -->
</head>
<body>
<header>
<h1><a href="https://sound.prole.org">sound.prole.org</a></h1>
<nav>
<!-- Add navigation links here if needed -->
</nav>
</header>
<main>
<section id="product-details">
<div class="product-image">
<img src="placeholder-soundblock.jpg" alt="prole.soundBlock" width="400">
</div>
<div class="product-info">
<h2>prole.soundBlock - 12" x 12" Sound Isolation Block</h2>
<p class="price">$49.99 (Price varies by location - see details below)</p>
<p>
Tired of unwanted noise? The <strong>prole.soundBlock</strong> is a revolutionary sound isolation solution built on proven floating wall construction principles. We take the complexity out of soundproofing, delivering pre-built, interlocking 12" x 12" blocks that are easy to install and incredibly effective.
</p>
<p>
Each block is meticulously crafted to meet local building codes, utilizing the maximum density rockwool (or equivalent high-performance poly insulation) permitted by fire regulations in your area. We handle the research, ensuring your project is safe and compliant.
</p>
<h3>Key Features:</h3>
<ul>
<li><strong>Dimensions:</strong> 12" x 12"</li>
<li><strong>Construction:</strong> Robust 2x4 or 2x6 frame (choose option), 1/4" plywood layers, high-density rockwool/poly insulation, acoustic sealant, and finished with Homosote 440 for superior performance. Mitered corners, glued & tacked construction.</li>
<li><strong>Customizable:</strong> We ensure compliance with *your* local fire codes and building regulations.</li>
<li><strong>Easy Installation:</strong> Interlocking design simplifies installation - no specialized skills required.</li>
<li><strong>Superior Sound Isolation:</strong> Effectively reduces noise transmission across a wide frequency range.</li>
</ul>
<h3>Applications:</h3>
<ul>
<li><strong>Apartment Noise Management:</strong> Reduce noise bleed between apartments, creating a more peaceful living environment.</li>
<li><strong>Recording Studio Sound Isolation:</strong> Build a quiet and controlled recording space, minimizing external noise and reflections.</li>
<li><strong>Home Audio Bass Traps:</strong> Enhance your home theater experience by absorbing low-frequency sound waves and reducing unwanted vibrations.</li>
<li><strong>Sound Reinforcement Applications:</strong> Isolate sound sources in venues, churches, or performance spaces.</li>
</ul>
<div class="location-disclaimer">
<p><strong>Important:</strong> Pricing and material selection (rockwool vs. poly) are dependent on your location to ensure code compliance. Please enter your zip code below to receive a personalized quote.</p>
<form id="location-form">
<label for="zipcode">Zip Code:</label>
<input type="text" id="zipcode" name="zipcode" required>
<button type="submit">Get Quote</button>
</form>
</div>
<div class="add-to-cart">
<label for="quantity">Quantity:</label>
<input type="number" id="quantity" name="quantity" value="1" min="1">
<button id="add-to-cart-button">Add to Cart</button>
</div>
</div>
</section>
<section id="professional-services">
<h2>Professional Installation & Consultation</h2>
<p>
Need help designing and installing your sound isolation system? Our team at <strong>Kifuthu LLC</strong> offers expert consultation and professional installation services. <a href="mailto:info@kifuthu.com">Contact us</a> for a free estimate.
</p>
</section>
</main>
<footer>
<p>&copy; 2024 sound.prole.org</p>
</footer>
<script>
// JavaScript for Add to Cart functionality (example)
document.getElementById('add-to-cart-button').addEventListener('click', function() {
// Get quantity from input
const quantity = document.getElementById('quantity').value;
// Here you would integrate with your shopping cart application.
// This is a placeholder - you'll need to replace this with your actual cart integration code.
alert(`Added ${quantity} prole.soundBlock to cart! (This is a placeholder)`);
});
//JavaScript for zip code form submission
document.getElementById('location-form').addEventListener('submit', function(event) {
event.preventDefault();
const zipcode = document.getElementById('zipcode').value;
alert(`Submitting zip code ${zipcode} to calculate price and material options. (This is a placeholder)`);
// In a real application, you would send this zip code to your backend to determine
// compliance with local building codes and calculate the correct price.
});
</script>
</body>
</html>