File size: 3,067 Bytes
883e2ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<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>