Spaces:
Running
Running
| <html lang="id"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Selamat Datang</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> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#3B82F6', | |
| secondary: '#10B981' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-gray-50 min-h-screen"> | |
| <main class="container mx-auto px-4 py-12"> | |
| <div class="max-w-2xl mx-auto text-center"> | |
| <h1 class="text-4xl font-bold text-primary mb-6">Halo Explorer! 🚀</h1> | |
| <p class="text-lg text-gray-600 mb-8">Selamat datang di petualangan digital Anda. Mari kita mulai!</p> | |
| <div class="bg-white rounded-xl shadow-md p-8 mb-8"> | |
| <div class="flex justify-center mb-6"> | |
| <i data-feather="compass" class="text-secondary w-12 h-12"></i> | |
| </div> | |
| <h2 class="text-2xl font-semibold text-gray-800 mb-4">Apa yang ingin Anda eksplorasi hari ini?</h2> | |
| <p class="text-gray-600 mb-6">Kami siap membantu Anda menemukan hal-hal menarik di dunia digital.</p> | |
| <button class="bg-primary hover:bg-primary-600 text-white font-medium py-2 px-6 rounded-lg transition duration-200"> | |
| Mulai Eksplorasi | |
| </button> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> | |
| <div class="bg-white rounded-xl shadow-md p-6"> | |
| <i data-feather="zap" class="text-secondary w-8 h-8 mb-4"></i> | |
| <h3 class="text-xl font-medium text-gray-800 mb-2">Cepat</h3> | |
| <p class="text-gray-600">Pengalaman yang cepat dan responsif</p> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-md p-6"> | |
| <i data-feather="shield" class="text-secondary w-8 h-8 mb-4"></i> | |
| <h3 class="text-xl font-medium text-gray-800 mb-2">Aman</h3> | |
| <p class="text-gray-600">Proteksi data Anda adalah prioritas kami</p> | |
| </div> | |
| <div class="bg-white rounded-xl shadow-md p-6"> | |
| <i data-feather="smile" class="text-secondary w-8 h-8 mb-4"></i> | |
| <h3 class="text-xl font-medium text-gray-800 mb-2">Mudah</h3> | |
| <p class="text-gray-600">Antarmuka yang ramah pengguna</p> | |
| </div> | |
| </div> | |
| <div class="mt-16 text-center"> | |
| <a href="portfolio.html" class="inline-block bg-primary hover:bg-primary-600 text-white font-medium py-3 px-8 rounded-lg transition-all duration-300 transform hover:scale-105"> | |
| Lihat Portfolio Kami | |
| </a> | |
| </div> | |
| </div> | |
| </main> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |