<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>Uygulamayı İndir</title>
<style>
.store-buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 50px;
}
.store-buttons img {
width: 180px;
cursor: pointer;
transition: transform 0.2s ease;
}
.store-buttons img:hover {
transform: scale(1.05);
}
</style>
</head>
<body>
<h2 style="text-align: center;">Uygulamamızı İndirin</h2>
<div class="store-buttons">
<!-- Google Play Store -->
<a href="https://drive.google.com/file/d/14fHpJydFXnamJS0nOW9LKIhAOCY7eprt/view?usp=sharing" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg" alt="Google Play">
</a>
<!-- Apple App Store -->
<a href="https://apps.apple.com/us/app/taksitlialpos/id6744943864" target="_blank">
<img src="https://developer.apple.com/assets/elements/badges/download-on-the-app-store.svg" alt="App Store">
</a>
</div>
</body>
</html>