feat: enhance app development section with responsive store badge layout and improved styling for better visual consistency

This commit is contained in:
Ümit Tunç
2026-05-22 07:23:40 +03:00
parent c195ff79d2
commit f0ab100b07
@@ -31,6 +31,38 @@
font-size: 2rem !important; font-size: 2rem !important;
line-height: 1; line-height: 1;
} }
/* Mağaza rozetleri: yan yana, aynı yükseklik */
.app-dev-store-badges {
display: inline-flex;
flex-wrap: nowrap;
align-items: center;
gap: 0.625rem;
max-width: 100%;
}
.app-dev-store-badge {
display: block;
height: 2.75rem;
width: auto;
max-width: none;
flex-shrink: 0;
}
@media (min-width: 576px) {
.app-dev-store-badge {
height: 3.25rem;
}
.app-dev-store-badges {
gap: 0.75rem;
}
}
@media (min-width: 1280px) {
.app-dev-store-badge {
height: 3.75rem;
}
.app-dev-store-badges {
gap: 1rem;
}
}
</style> </style>
@endpush @endpush
@@ -193,9 +225,11 @@
<p class="lead !text-[1.2rem] !leading-[1.5] !font-normal !mb-7"> <p class="lead !text-[1.2rem] !leading-[1.5] !font-normal !mb-7">
{!! t('Trunçgil Teknoloji olarak Android ve iOS uygulamalarını fikirden mağaza yayınına kadar titizlikle hayata geçiriyoruz.') !!} {!! t('Trunçgil Teknoloji olarak Android ve iOS uygulamalarını fikirden mağaza yayınına kadar titizlikle hayata geçiriyoruz.') !!}
</p> </p>
<div class="flex flex-wrap justify-center lg:!justify-start xl:!justify-start gap-4 items-center" data-cues="slideInDown" data-group="page-title-buttons" data-delay="1800"> <div class="flex justify-center lg:!justify-start xl:!justify-start" data-cues="slideInDown" data-group="page-title-buttons" data-delay="1800">
<img src="{{ asset('assets/img/photos/button-google-play.svg') }}" class="!h-[4rem] xl:!h-[4.25rem] !rounded-[0.8rem]" alt="Google Play" width="135" height="40" loading="lazy" decoding="async"> <div class="app-dev-store-badges">
<img src="{{ asset('assets/img/photos/button-appstore.svg') }}" class="!h-[4rem] xl:!h-[4.25rem] !rounded-[0.8rem]" alt="App Store" width="135" height="40" loading="lazy" decoding="async"> <img src="{{ asset('assets/img/photos/button-google-play.svg') }}" class="app-dev-store-badge !rounded-[0.8rem]" alt="Google Play" loading="lazy" decoding="async">
<img src="{{ asset('assets/img/photos/button-appstore.svg') }}" class="app-dev-store-badge !rounded-[0.8rem]" alt="App Store" loading="lazy" decoding="async">
</div>
</div> </div>
</div> </div>
<div class="xl:w-6/12 lg:w-6/12 w-full flex-[0_0_auto] max-w-full !ml-auto !mb-[-10rem] xxl:!mb-[-15rem] !mt-[50px]" data-cues="slideInDown" data-delay="600"> <div class="xl:w-6/12 lg:w-6/12 w-full flex-[0_0_auto] max-w-full !ml-auto !mb-[-10rem] xxl:!mb-[-15rem] !mt-[50px]" data-cues="slideInDown" data-delay="600">
@@ -451,11 +485,10 @@
<p class="lead !text-[1.2rem] !leading-[1.5] !font-normal !mb-7"> <p class="lead !text-[1.2rem] !leading-[1.5] !font-normal !mb-7">
{!! t('Trunçgil Teknoloji ekibi, projenizi dinlemeye ve size özel bir yol haritası sunmaya hazır.') !!} {!! t('Trunçgil Teknoloji ekibi, projenizi dinlemeye ve size özel bir yol haritası sunmaya hazır.') !!}
</p> </p>
<div class="flex flex-wrap justify-center xl:!justify-start lg:!justify-start gap-3 items-center"> <div class="flex justify-center xl:!justify-start lg:!justify-start">
<div class="app-dev-store-badges">
<div class="flex gap-4 items-center"> <img src="{{ asset('assets/img/photos/button-google-play.svg') }}" class="app-dev-store-badge !rounded-[0.8rem]" alt="Google Play" loading="lazy" decoding="async">
<img src="{{ asset('assets/img/photos/button-google-play.svg') }}" class="!h-[4rem] xl:!h-[4.25rem] !rounded-[0.8rem]" alt="Google Play" width="135" height="40" loading="lazy" decoding="async"> <img src="{{ asset('assets/img/photos/button-appstore.svg') }}" class="app-dev-store-badge !rounded-[0.8rem]" alt="App Store" loading="lazy" decoding="async">
<img src="{{ asset('assets/img/photos/button-appstore.svg') }}" class="!h-[4rem] xl:!h-[4.25rem] !rounded-[0.8rem]" alt="App Store" width="135" height="40" loading="lazy" decoding="async">
</div> </div>
</div> </div>
</div> </div>