Spaces:
Running
Running
File size: 4,066 Bytes
a89a667 1a24f92 a89a667 | 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 73 74 75 76 77 78 79 80 81 82 83 84 | <!DOCTYPE html>
<html lang="kg,ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Колледж приложение | Каракол Колледжи</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
.lang-switcher {
position: absolute;
top: 20px;
right: 20px;
}
</style>
</head>
<body class="bg-gray-100">
<div class="lang-switcher">
<a href="#" class="bg-blue-500 text-white px-3 py-1 rounded mr-2">Кыргызча</a>
<a href="#" class="bg-gray-500 text-white px-3 py-1 rounded">Русский</a>
</div>
<custom-navbar></custom-navbar>
<main class="container mx-auto my-8 px-4">
<div class="bg-white rounded-lg shadow-md p-6 mb-8">
<h2 class="text-2xl font-semibold mb-4">Колледждин мобилдик приложениси</h2>
<p class="mb-4">Сиз биздин колледждин мобилдик приложенисин жүктөп алып, бардык жаңылыктарды, сабактарды жана башка маалыматтарды ала аласыз.</p>
<div class="flex flex-col md:flex-row gap-8">
<div class="bg-gray-100 p-6 rounded-lg flex-1">
<h3 class="text-xl font-bold mb-4">Android үчүн</h3>
<img src="http://static.photos/technology/320x240/100" alt="Android приложение" class="w-32 h-auto mx-auto mb-4">
<a href="#" class="bg-green-500 text-white px-6 py-3 rounded-lg font-semibold hover:bg-green-600 block text-center">
Google Play Store
</a>
</div>
<div class="bg-gray-100 p-6 rounded-lg flex-1">
<h3 class="text-xl font-bold mb-4">iOS үчүн</h3>
<img src="http://static.photos/technology/320x240/101" alt="iOS приложение" class="w-32 h-auto mx-auto mb-4">
<a href="#" class="bg-blue-500 text-white px-6 py-3 rounded-lg font-semibold hover:bg-blue-600 block text-center">
App Store
</a>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-6">
<h3 class="text-xl font-bold mb-4">Приложениенин мүмкүнчүлүктөрү:</h3>
<ul class="space-y-3">
<li class="flex items-start">
<span class="text-green-500 mr-2">✓</span>
<span>Сабактардын графиги жана жаңылыктар</span>
</li>
<li class="flex items-start">
<span class="text-green-500 mr-2">✓</span>
<span>Китептерге онлайн кирүү</span>
</li>
<li class="flex items-start">
<span class="text-green-500 mr-2">✓</span>
<span>Каттоо системасы</span>
</li>
<li class="flex items-start">
<span class="text-green-500 mr-2">✓</span>
<span>Окуучулар порталы</span>
</li>
<li class="flex items-start">
<span class="text-green-500 mr-2">✓</span>
<span>Эскертмелер жана эскертүүлөр</span>
</li>
</ul>
</div>
</main>
<footer class="bg-blue-700 text-white py-6 mt-8">
<div class="container mx-auto text-center">
<p>© 2023 Каракол Колледжи. Бардык укуктар корголгон.</p>
</div>
</footer>
<script src="https://unpkg.com/feather-icons"></script>
<script>
feather.replace();
</script>
</body>
</html> |