undefined / index.html
GrimReaper000's picture
"Create a clean, modern e-commerce website for a premium coffee brand called Solaro Coffee. The brand identity should feel warm, uplifting, and trustworthy. Use the following branding elements throughout the design:
182a604 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solaro Coffee | Awaken Your Day</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #FAF7F2;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
}
.text-coffee {
color: #4E342E;
}
.text-gold {
color: #FFB300;
}
.bg-beige {
background-color: #E5D3B3;
}
.bg-cream {
background-color: #FAF7F2;
}
.bg-sage {
background-color: #8A9A77;
}
.text-sage {
color: #8A9A77;
}
.btn-gold {
background-color: #FFB300;
color: white;
transition: all 0.3s ease;
}
.btn-gold:hover {
background-color: #e09d00;
transform: translateY(-2px);
}
.product-card {
transition: all 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.hero-gradient {
background: linear-gradient(135deg, rgba(250, 247, 242, 0.9) 0%, rgba(229, 211, 179, 0.7) 100%);
}
</style>
</head>
<body class="bg-cream">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center">
<!-- Logo Placeholder -->
<div class="w-12 h-12 rounded-full bg-coffee flex items-center justify-center mr-3">
<i data-feather="sun" class="text-gold"></i>
</div>
<div>
<h1 class="text-2xl font-bold text-coffee">Solaro Coffee</h1>
<p class="text-xs text-sage">Awaken Your Day</p>
</div>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-coffee hover:text-gold font-medium">Home</a>
<a href="#" class="text-coffee hover:text-gold font-medium">Shop</a>
<a href="#" class="text-coffee hover:text-gold font-medium">About</a>
<a href="#" class="text-coffee hover:text-gold font-medium">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<a href="#" class="text-coffee hover:text-gold">
<i data-feather="search"></i>
</a>
<a href="#" class="text-coffee hover:text-gold">
<i data-feather="user"></i>
</a>
<a href="#" class="text-coffee hover:text-gold relative">
<i data-feather="shopping-cart"></i>
<span class="absolute -top-2 -right-2 bg-gold text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">2</span>
</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient py-20">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-4xl md:text-5xl font-bold text-coffee mb-4">Premium Coffee Experience</h2>
<p class="text-lg text-coffee mb-8">Discover ethically sourced, artisan roasted coffee beans that awaken your senses and elevate your daily ritual.</p>
<a href="#" class="btn-gold px-8 py-3 rounded-full font-medium inline-block">Shop Now</a>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-80 h-80 flex items-center justify-center">
<span class="text-gray-500">Coffee Product Image</span>
</div>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-coffee mb-12">Featured Blends</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Product 1 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="bg-gray-200 border-2 border-dashed w-full h-64 flex items-center justify-center">
<span class="text-gray-500">Product Image</span>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-coffee mb-2">Ethiopian Highland</h3>
<p class="text-sage mb-4">Bright, fruity notes with a floral aroma</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-coffee">$18.99</span>
<button class="btn-gold px-4 py-2 rounded-full text-sm">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="bg-gray-200 border-2 border-dashed w-full h-64 flex items-center justify-center">
<span class="text-gray-500">Product Image</span>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-coffee mb-2">Colombian Supremo</h3>
<p class="text-sage mb-4">Rich, balanced flavor with caramel notes</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-coffee">$17.99</span>
<button class="btn-gold px-4 py-2 rounded-full text-sm">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="product-card bg-white rounded-lg overflow-hidden shadow-md">
<div class="bg-gray-200 border-2 border-dashed w-full h-64 flex items-center justify-center">
<span class="text-gray-500">Product Image</span>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-coffee mb-2">Guatemalan Antigua</h3>
<p class="text-sage mb-4">Full-bodied with smoky chocolate finish</p>
<div class="flex justify-between items-center">
<span class="text-lg font-bold text-coffee">$19.99</span>
<button class="btn-gold px-4 py-2 rounded-full text-sm">Add to Cart</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-16 bg-beige">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-96 flex items-center justify-center">
<span class="text-gray-500">About Image</span>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h2 class="text-3xl font-bold text-coffee mb-6">Our Story</h2>
<p class="text-coffee mb-6">At Solaro Coffee, we believe in the transformative power of a perfect cup. Our journey began with a passion for exceptional coffee and a commitment to sustainable practices.</p>
<p class="text-coffee mb-8">We source directly from small, ethical farms and roast in small batches to ensure every bean reaches its full potential. From farm to cup, we maintain the highest standards of quality and responsibility.</p>
<a href="#" class="btn-gold px-6 py-3 rounded-full font-medium inline-block">Learn More</a>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-coffee mb-12">What Our Customers Say</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-gray-200 border-2 border-dashed rounded-full w-12 h-12 mr-4"></div>
<div>
<h4 class="font-bold text-coffee">Sarah J.</h4>
<div class="flex text-gold">
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
</div>
</div>
</div>
<p class="text-coffee">"The Ethiopian Highland blend is incredible! It's become my morning ritual. The quality is unmatched."</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-gray-200 border-2 border-dashed rounded-full w-12 h-12 mr-4"></div>
<div>
<h4 class="font-bold text-coffee">Michael T.</h4>
<div class="flex text-gold">
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
</div>
</div>
</div>
<p class="text-coffee">"Fast shipping and the coffee stays fresh for weeks. Customer service is excellent too!"</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center mb-4">
<div class="bg-gray-200 border-2 border-dashed rounded-full w-12 h-12 mr-4"></div>
<div>
<h4 class="font-bold text-coffee">Emma R.</h4>
<div class="flex text-gold">
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
<i data-feather="star"></i>
</div>
</div>
</div>
<p class="text-coffee">"As a coffee shop owner, I'm very particular about my suppliers. Solaro Coffee has become my go-to!"</p>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-sage">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold text-white mb-4">Join Our Coffee Community</h2>
<p class="text-white mb-8 max-w-2xl mx-auto">Subscribe to our newsletter for exclusive offers, brewing tips, and early access to new blends.</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none">
<button class="bg-gold hover:bg-yellow-600 text-white px-6 py-3 rounded-r-lg font-medium">Subscribe</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-coffee text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center mr-3">
<i data-feather="sun" class="text-coffee"></i>
</div>
<h3 class="text-xl font-bold">Solaro Coffee</h3>
</div>
<p class="mb-4">Awaken your day with our premium, ethically sourced coffee blends.</p>
<div class="flex space-x-4">
<a href="#" class="text-white hover:text-gold"><i data-feather="facebook"></i></a>
<a href="#" class="text-white hover:text-gold"><i data-feather="instagram"></i></a>
<a href="#" class="text-white hover:text-gold"><i data-feather="twitter"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Shop</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-gold">All Products</a></li>
<li><a href="#" class="hover:text-gold">New Arrivals</a></li>
<li><a href="#" class="hover:text-gold">Best Sellers</a></li>
<li><a href="#" class="hover:text-gold">Subscription</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Information</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-gold">About Us</a></li>
<li><a href="#" class="hover:text-gold">Shipping Policy</a></li>
<li><a href="#" class="hover:text-gold">Return Policy</a></li>
<li><a href="#" class="hover:text-gold">Contact Us</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i data-feather="map-pin" class="mr-2 mt-1"></i>
<span>123 Coffee Street, Bean City</span>
</li>
<li class="flex items-center">
<i data-feather="phone" class="mr-2"></i>
<span>(123) 456-7890</span>
</li>
<li class="flex items-center">
<i data-feather="mail" class="mr-2"></i>
<span>info@solarocoffee.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-6 text-center">
<p>&copy; 2023 Solaro Coffee. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>