kintsugitraining / index.html
j1225d's picture
multiple selections at once are possible, re-clicking deactivates the selection - Follow Up Deployment
ad754e0 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Your Perfect Workout | Kintsugi Training</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #000000;
color: #ffffff;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
color: #d4af37;
letter-spacing: -0.025em;
}
.equipment-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
border-color: #d4af37;
}
.gold-gradient {
background: linear-gradient(135deg, #d4af37 0%, #a78a3a 100%);
}
.step-indicator.active {
background-color: #d4af37;
color: #000000;
border-color: #d4af37;
}
.nav-link:hover {
color: #d4af37;
}
.equipment-card {
background-color: #111111;
border: 1px solid #222222;
}
footer {
background-color: #000000;
border-top: 1px solid #222222;
}
.gold-text {
color: #d4af37;
}
</style>
</head>
<body class="min-h-screen">
<!-- Header/Navigation -->
<header class="bg-black border-b border-gray-800">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/logo.810a19e0.png"
alt="Kintsugi Training Logo" class="h-10 w-10">
<span class="text-xl font-bold gold-text">Kintsugi Training</span>
</div>
<nav class="hidden md:flex space-x-6">
<a href="#" class="nav-link text-gray-600 hover:text-amber-500 transition">Home</a>
<a href="#" class="nav-link text-gray-600 hover:text-amber-500 transition">Profile</a>
<div class="flex space-x-4">
<a href="#" class="px-4 py-2 rounded-md text-gray-600 hover:bg-gray-100 transition">Login</a>
<a href="#" class="px-4 py-2 rounded-md gold-gradient text-white hover:opacity-90 transition">Register</a>
</div>
</nav>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</header>
<!-- Mobile Menu (hidden by default) -->
<div class="md:hidden bg-white shadow-lg hidden" id="mobileMenu">
<div class="container mx-auto px-4 py-4 flex flex-col space-y-4">
<a href="#" class="text-gray-600 hover:text-amber-500 py-2">Home</a>
<a href="#" class="text-gray-600 hover:text-amber-500 py-2">Profile</a>
<div class="flex flex-col space-y-2 pt-2 border-t border-gray-100">
<a href="#" class="px-4 py-2 rounded-md text-center text-gray-600 hover:bg-gray-100">Login</a>
<a href="#" class="px-4 py-2 rounded-md text-center gold-gradient text-white hover:opacity-90">Register</a>
</div>
</div>
</div>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8 md:py-12">
<div class="max-w-4xl mx-auto text-center mb-16">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Build Your Perfect Workout</h1>
<p class="text-gray-400 max-w-2xl mx-auto text-lg">
Select your equipment, target muscles, and customize exercises to create a personalized workout plan.
</p>
</div>
<!-- Progress Steps -->
<div class="flex justify-center mb-12">
<div class="flex items-center">
<!-- Step 1 -->
<div class="flex flex-col items-center">
<div class="step-indicator w-10 h-10 rounded-full border-2 border-amber-500 flex items-center justify-center font-bold text-amber-500 active">
1
</div>
<span class="mt-2 text-sm font-medium text-gray-700">Equipment</span>
</div>
<div class="w-16 md:w-24 h-1 bg-gray-200 mx-2"></div>
<!-- Step 2 -->
<div class="flex flex-col items-center">
<div class="step-indicator w-10 h-10 rounded-full border-2 border-gray-300 flex items-center justify-center font-bold text-gray-400">
2
</div>
<span class="mt-2 text-sm font-medium text-gray-500">Muscles</span>
</div>
<div class="w-16 md:w-24 h-1 bg-gray-200 mx-2"></div>
<!-- Step 3 -->
<div class="flex flex-col items-center">
<div class="step-indicator w-10 h-10 rounded-full border-2 border-gray-300 flex items-center justify-center font-bold text-gray-400">
3
</div>
<span class="mt-2 text-sm font-medium text-gray-500">Exercises</span>
</div>
</div>
</div>
<!-- Equipment Selection -->
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-6">
<!-- Bodyweight Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/bodyweight.e08c10a8.png"
alt="Bodyweight" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Bodyweight</h3>
</div>
</div>
<!-- Dumbbell Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/dumbbell.0cab1a70.png"
alt="Dumbbell" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold">Dumbbell</h3>
</div>
</div>
<!-- Barbell Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/barbell.50cb27fb.png"
alt="Barbell" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Barbell</h3>
</div>
</div>
<!-- Kettlebell Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/kettlebell.9f01f239.png"
alt="Kettlebell" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Kettlebell</h3>
</div>
</div>
<!-- Band Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/band.e40118b4.png"
alt="Band" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Band</h3>
</div>
</div>
<!-- Plate Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/plate.ae3a3195.png"
alt="Plate" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Plate</h3>
</div>
</div>
<!-- Pull-up bar Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/pull-up-bar.5a1808c8.png"
alt="Pull-up bar" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Pull-up bar</h3>
</div>
</div>
<!-- Bench Card -->
<div class="equipment-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 cursor-pointer">
<div class="p-6 flex flex-col items-center">
<div class="w-20 h-20 mb-4 flex items-center justify-center">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/bench.15b24162.png"
alt="Bench" class="w-full h-full object-contain">
</div>
<h3 class="text-lg font-semibold text-gray-800">Bench</h3>
</div>
</div>
</div>
<!-- Navigation Buttons -->
<div class="flex justify-between mt-12">
<button class="px-6 py-3 rounded-md text-gray-400 hover:text-gold-500 hover:bg-gray-800 transition border border-gray-700">
<i class="fas fa-arrow-left mr-2"></i> Back
</button>
<button class="px-6 py-3 rounded-md gold-gradient text-black hover:opacity-90 transition font-medium">
Next <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</main>
<!-- Footer -->
<footer class="py-8 mt-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<img src="https://ktworkout-kintsugi-tradings-projects.vercel.app/_next/static/media/logo.810a19e0.png"
alt="Kintsugi Training Logo" class="h-8 w-8">
<span class="text-lg font-semibold text-gray-700">Kintsugi Training</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-amber-500 transition">Terms</a>
<a href="#" class="text-gray-500 hover:text-amber-500 transition">Privacy</a>
<a href="#" class="text-gray-500 hover:text-amber-500 transition">Contact</a>
</div>
</div>
<div class="mt-6 text-center text-gray-400 text-sm">
&copy; 2023 Kintsugi Training. All rights reserved.
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('button.md\\:hidden').addEventListener('click', function() {
const menu = document.getElementById('mobileMenu');
menu.classList.toggle('hidden');
});
// Equipment card selection (multiple with toggle)
const equipmentCards = document.querySelectorAll('.equipment-card');
equipmentCards.forEach(card => {
card.addEventListener('click', function() {
const isActive = this.classList.contains('border-2');
// Toggle the clicked card
if (isActive) {
this.classList.remove('border-2', 'border-amber-500');
this.style.backgroundColor = '#000000';
const h3 = this.querySelector('h3');
if (h3) h3.style.color = '#ffffff';
} else {
this.classList.add('border-2', 'border-amber-500');
this.style.backgroundColor = '#ffffff';
const h3 = this.querySelector('h3');
if (h3) h3.style.color = '#000000';
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=j1225d/kintsugitraining" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>