taeny's picture
주방인테이어를 하고 싶어 그런데 여러가지 색상과 디자인을 대입해 보고 싶어 여러 위치에 주방에 주방기구를 어떻게 배치할 지도 여러가지로 보고싶어 주방인테리어를 할 수 있도록 주방을 세팅해서 거기에 맞는 가구를 내 마음데로 넣고 싶어
9d106a9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kitchen Canvas | Home</title>
<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>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="hero bg-gradient-to-r from-amber-100 to-orange-50 rounded-2xl p-8 md:p-12 mb-12">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Your Kitchen, Your Canvas</h1>
<p class="text-lg text-gray-600 mb-6">Discover the joy of cooking with our essential kitchen tools and creative recipes.</p>
<div class="flex gap-4">
<a href="recipes.html" class="bg-amber-500 hover:bg-amber-600 text-white font-semibold px-6 py-3 rounded-lg transition duration-300 inline-flex items-center">
Explore Recipes <i data-feather="arrow-right" class="ml-2"></i>
</a>
<a href="kitchen-visualizer.html" class="bg-white hover:bg-gray-100 text-gray-800 font-semibold px-6 py-3 rounded-lg transition duration-300 inline-flex items-center border border-amber-500">
Design Your Kitchen <i data-feather="layout" class="ml-2"></i>
</a>
</div>
</div>
<div class="md:w-1/2">
<img src="http://static.photos/food/640x360/42" alt="Kitchen Essentials" class="rounded-xl shadow-lg w-full">
</div>
</div>
</section>
<!-- Features Section -->
<section class="mb-16">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Essential Kitchen Tools</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-amber-100 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4">
<i data-feather="utensils" class="text-amber-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Basic Utensils</h3>
<p class="text-gray-600">The must-have tools for every kitchen, from spatulas to ladles.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-amber-100 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4">
<i data-feather="cpu" class="text-amber-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Smart Appliances</h3>
<p class="text-gray-600">Modern appliances that make cooking easier and more efficient.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-amber-100 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4">
<i data-feather="box" class="text-amber-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Storage Solutions</h3>
<p class="text-gray-600">Keep your kitchen organized with our smart storage options.</p>
</div>
</div>
</section>
<!-- Recipe Preview -->
<section class="mb-16">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">Popular Recipes</h2>
<a href="recipes.html" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
View All <i data-feather="chevron-right" class="ml-1"></i>
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="http://static.photos/food/640x360/101" alt="Recipe" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2 text-gray-800">Easy Pasta Carbonara</h3>
<p class="text-gray-600 mb-4">Classic Italian dish made simple with our step-by-step guide.</p>
<a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
View Recipe <i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="http://static.photos/food/640x360/102" alt="Recipe" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2 text-gray-800">Vegetable Stir Fry</h3>
<p class="text-gray-600 mb-4">Quick and healthy vegetable stir fry ready in 15 minutes.</p>
<a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
View Recipe <i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-lg transition duration-300">
<img src="http://static.photos/food/640x360/103" alt="Recipe" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2 text-gray-800">Chocolate Chip Cookies</h3>
<p class="text-gray-600 mb-4">Soft and chewy cookies that everyone will love.</p>
<a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
View Recipe <i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>