81 lines
4.8 KiB
HTML
81 lines
4.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Penyakit Buah Kakao</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="icon" href="{{ url_for('static', filename='img/favicon.ico') }}" type="image/x-icon">
|
|
</head>
|
|
<body class="bg-[#f0f9ff] font-poppins">
|
|
<a href="/" class="flex items-center text-black font-semibold">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
|
|
</svg>
|
|
</a>
|
|
<div class="flex flex-col items-center justify-center min-h-screen bg-gradient-to-b from-white to-[#e0f7ff]">
|
|
<!-- Header Title -->
|
|
<h1 class="text-4xl font-bold text-[#1cadc0] mt-6">CIRI-CIRI PENYAKIT BUAH KAKAO DAN BUAH KAKAO YANG SEHAT</h1>
|
|
<p class="text-lg font-semibold text-[#1cadc0] mt-2">(THEOBROMA CACAO)</p>
|
|
|
|
<!-- Content Section -->
|
|
<div class="mt-10 grid grid-cols-2"> <!-- Mengurangi gap antar kolom -->
|
|
<!-- Left Column -->
|
|
<div class="flex flex-col space-y-4 items-center"> <!-- Mengurangi space antar elemen -->
|
|
<!-- Item 1 -->
|
|
<div class="bg-white w-full max-w-[220px] h-40 rounded-lg shadow-lg p-4">
|
|
<img src="{{ url_for('static', filename='img/phytophthora.svg') }}" alt="Phytophthora" class="mx-auto w-full h-24 object-contain">
|
|
<span class="text-[#1cadc0] font-semibold block text-center mt-2">(Phytophthora)</span>
|
|
</div>
|
|
<!-- Item 2 -->
|
|
<div class="bg-white w-full max-w-[220px] h-40 rounded-lg shadow-lg p-4">
|
|
<img src="{{ url_for('static', filename='img/healthy.svg') }}" alt="Healthy" class="mx-auto w-full h-24 object-contain">
|
|
<span class="text-[#1cadc0] font-semibold block text-center mt-2">(Healthy)</span>
|
|
</div>
|
|
<!-- Item 3 -->
|
|
<div class="bg-white w-full max-w-[220px] h-40 rounded-lg shadow-lg p-4">
|
|
<img src="{{ url_for('static', filename='img/monilia.svg') }}" alt="Monilia" class="mx-auto w-full h-24 object-contain">
|
|
<span class="text-[#1cadc0] font-semibold block text-center mt-2">(Monilia)</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Right Column -->
|
|
<div class="flex flex-col space-y-4 items-center"> <!-- Mengurangi space antar elemen -->
|
|
<!-- Description Box 1 -->
|
|
<div class="bg-white w-full max-w-[460px] h-40 rounded-lg shadow-lg p-4">
|
|
<p class="text-gray-600 text-sm"><b>Ciri-ciri Buah Kakao Phytophthora:</b></p>
|
|
<ol class="text-gray-600 text-sm list-decimal ml-5">
|
|
<li>Lesi berwarna cokelat pada permukaan polong</li>
|
|
<li>Lesi berwarna cokelat biasanya muncul di bagian atas atau bawah polong</li>
|
|
<li>Berkembang dengan cepat dan kadang-kadang spora berwarna putih muncul pada lesi berwarna cokelat</li>
|
|
<li>Bau “amis” bisa tercium</li>
|
|
</ol>
|
|
</div>
|
|
<!-- Description Box 2 -->
|
|
<div class="bg-white w-full max-w-[460px] h-40 rounded-lg shadow-lg p-4">
|
|
<p class="text-gray-600 text-sm"><b>Ciri-ciri Buah Kakao Sehat:</b></p>
|
|
<ol class="text-gray-600 text-sm list-decimal ml-5">
|
|
<li>Warna kulit buah berubah dari hijau menjadi kuning</li>
|
|
<li>Poros buah agak kuning</li>
|
|
<li>Biji di dalamnya tidak terlalu menempel pada kulit</li>
|
|
<li>Tangkai buah mengering dan tidak sulit saat dipetik</li>
|
|
<li>Mengeluarkan bunyi saat digoyangkan atau diketuk</li>
|
|
</ol>
|
|
</div>
|
|
<!-- Description Box 3 -->
|
|
<div class="bg-white w-full max-w-[460px] h-40 rounded-lg shadow-lg p-4">
|
|
<p class="text-gray-600 text-sm"><b>Ciri-ciri Buah Kakao Monilia:</b></p>
|
|
<ol class="text-gray-600 text-sm list-decimal ml-5">
|
|
<li>Polong perlahan menyusut dan kering</li>
|
|
<li>Menjadi keras dan seperti mumi</li>
|
|
<li>Lapisan krim keras/berwarna cokelat pada polong merupakan sisa dari jamur</li>
|
|
<li>Polong mumi yang terinfeksi tetap melekat pada pohon</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|