curlcraft-studio / index.html
Vikasparmar's picture
New hairstyle website
4991312 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CurlCraft Studio ✂️ | Discover Your Next Look</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/hairstyle-card.js"></script>
<script src="components/hero.js"></script>
<script src="components/trending-section.js"></script>
</head>
<body class="bg-gradient-to-br from-gray-50 to-pink-50 min-h-screen font-sans">
<custom-navbar></custom-navbar>
<custom-hero></custom-hero>
<main class="container mx-auto px-4 py-12">
<section class="mb-16">
<div class="text-center mb-10">
<h2 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Trending Styles This Season</h2>
<p class="text-gray-600 text-lg max-w-2xl mx-auto">From chic bobs to bold colors, find inspiration from our curated collection.</p>
</div>
<custom-trending-section></custom-trending-section>
</section>
<section class="mb-16">
<div class="flex flex-col md:flex-row items-center justify-between gap-10">
<div class="md:w-1/2">
<img src="http://static.photos/beauty/1024x576/7" alt="Hair Salon Stylist" class="rounded-3xl shadow-2xl w-full h-auto object-cover">
</div>
<div class="md:w-1/2">
<h3 class="text-3xl font-bold text-gray-800 mb-6">Virtual Try-On Experience</h3>
<p class="text-gray-700 mb-6 text-lg">Not sure if bangs are for you? Use our AI-powered virtual try-on tool to see how different hairstyles look on you before making the chop!</p>
<a href="/try-on" class="inline-flex items-center px-6 py-3 bg-gradient-to-r from-purple-600 to-pink-500 text-white font-semibold rounded-full hover:shadow-lg transition-all duration-300">
Try It Now
<i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
</div>
</section>
<section class="py-12">
<div class="text-center mb-10">
<h2 class="text-4xl font-bold text-gray-800 mb-4">Find Your Perfect Stylist</h2>
<p class="text-gray-600 text-lg max-w-2xl mx-auto">Browse profiles, read reviews, and book appointments with top-rated hair artists in your area.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<div class="w-20 h-20 rounded-full mx-auto mb-4 overflow-hidden border-4 border-pink-200">
<img src="http://static.photos/people/200x200/101" alt="Stylist Alex" class="w-full h-full object-cover">
</div>
<h4 class="text-xl font-bold text-center text-gray-800 mb-2">Alex Morgan</h4>
<p class="text-gray-600 text-center mb-4">Specializes in balayage & curly cuts</p>
<div class="flex justify-center text-yellow-400 mb-4">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
<a href="/stylist/alex" class="block text-center text-purple-600 font-semibold hover:text-purple-800">View Profile</a>
</div>
<div class="bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<div class="w-20 h-20 rounded-full mx-auto mb-4 overflow-hidden border-4 border-pink-200">
<img src="http://static.photos/people/200x200/102" alt="Stylist Jamie" class="w-full h-full object-cover">
</div>
<h4 class="text-xl font-bold text-center text-gray-800 mb-2">Jamie Chen</h4>
<p class="text-gray-600 text-center mb-4">Expert in vintage & retro styles</p>
<div class="flex justify-center text-yellow-400 mb-4">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
<a href="/stylist/jamie" class="block text-center text-purple-600 font-semibold hover:text-purple-800">View Profile</a>
</div>
<div class="bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-shadow duration-300">
<div class="w-20 h-20 rounded-full mx-auto mb-4 overflow-hidden border-4 border-pink-200">
<img src="http://static.photos/people/200x200/103" alt="Stylist Taylor" class="w-full h-full object-cover">
</div>
<h4 class="text-xl font-bold text-center text-gray-800 mb-2">Taylor Rivers</h4>
<p class="text-gray-600 text-center mb-4">Master of bold colors & undercuts</p>
<div class="flex justify-center text-yellow-400 mb-4">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
<a href="/stylist/taylor" class="block text-center text-purple-600 font-semibold hover:text-purple-800">View Profile</a>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
// Simple script to handle newsletter signup
document.addEventListener('DOMContentLoaded', function() {
const newsletterForm = document.querySelector('custom-footer')?.shadowRoot?.querySelector('#newsletter-form');
if (newsletterForm) {
newsletterForm.addEventListener('submit', function(e) {
e.preventDefault();
const email = this.querySelector('input[type="email"]').value;
alert(`Thank you! You've subscribed with: ${email}. Welcome to the CurlCraft community!`);
this.reset();
});
}
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>