Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Android App Development</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .phone-mockup { | |
| width: 300px; | |
| height: 600px; | |
| border: 12px solid #222; | |
| border-radius: 30px; | |
| position: relative; | |
| overflow: hidden; | |
| box-shadow: 0 25px 50px rgba(0,0,0,0.2); | |
| background-color: #f5f5f5; | |
| } | |
| .phone-screen { | |
| width: 100%; | |
| height: 100%; | |
| background-color: #fff; | |
| overflow: hidden; | |
| } | |
| .android-logo { | |
| width: 80px; | |
| height: 80px; | |
| margin: 40% auto 0; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100"> | |
| <div class="container mx-auto py-12 px-4"> | |
| <div class="flex flex-col md:flex-row items-center justify-center gap-12"> | |
| <div class="phone-mockup"> | |
| <div class="phone-screen flex flex-col items-center"> | |
| <img src="http://static.photos/technology/200x200/42" alt="Android App" class="android-logo rounded-lg"> | |
| <h2 class="text-xl font-bold mt-4 text-gray-800">DroidDream App</h2> | |
| <p class="text-gray-600 text-center px-6 mt-2">Building your dream Android application</p> | |
| </div> | |
| </div> | |
| <div class="max-w-md"> | |
| <h1 class="text-4xl font-bold text-gray-800 mb-6">Android App Development</h1> | |
| <p class="text-lg text-gray-600 mb-8"> | |
| We create custom Android applications tailored to your needs. From design to deployment, we handle everything to bring your mobile vision to life. | |
| </p> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i> | |
| <span class="text-gray-700">Kotlin & Java Development</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i> | |
| <span class="text-gray-700">Material Design UI/UX</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <i data-feather="check-circle" class="text-green-500 mr-3 mt-1"></i> | |
| <span class="text-gray-700">Google Play Store Deployment</span> | |
| </div> | |
| </div> | |
| <button class="mt-8 bg-green-500 hover:bg-green-600 text-white font-bold py-3 px-6 rounded-lg shadow-lg transition duration-200"> | |
| Get Started | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |