<!-- Tailwind CSS CDN -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css"
rel="stylesheet"
/>
<!-- Iconify CDN -->
<script src="https://code.iconify.design/3/3.0.0/iconify.min.js"></script>
<style>
/* Sürekli yukarı kayma animasyonu */
@keyframes scrollUp {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-50%);
}
}
.animate-scrollUp {
animation: scrollUp 6s linear infinite;
}
/* Hover durumunda animasyonu duraklat */
.group:hover .animate-scrollUp {
animation-play-state: paused;
}
</style>
<div class="container mx-auto py-8 max-w-screen-xl">
<!-- Mobilde 1 sütun, md ve üzerinde 2 sütun; içerikler dikeyde ortalanıyor -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 items-center">
<!-- Sol Sütun: Metin İçeriği -->
<div>
<h1 class="text-4xl font-bold mb-4">
Empower Your Digital Transformation
</h1>
<p class="text-lg text-gray-700">
We are a forward-thinking digital solutions firm that partners with the world’s most innovative brands.
Collaborating with industry giants like Apple, Google, Amazon, Microsoft, Facebook, Adobe, Netflix, Spotify, and Nike,
we deliver tailor-made strategies that drive growth, spark innovation, and shape the future of digital business.
</p>
</div>
<!-- Sağ Sütun: Marka İkonları (animasyonlu) -->
<div class="flex justify-around gap-4">
<!-- Birinci İkon Kolonu: Apple, Google, Amazon -->
<div class="group overflow-hidden h-40 w-full max-w-[120px]">
<div class="animate-scrollUp">
<!-- İlk set (alt kısma ekstra boşluk için mb-8 ekledik) -->
<div class="flex flex-col gap-8 items-center mb-8">
<span class="iconify text-5xl" data-icon="simple-icons:apple" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:google" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:amazon" data-inline="false"></span>
</div>
<!-- Yinelenen set -->
<div class="flex flex-col gap-8 items-center">
<span class="iconify text-5xl" data-icon="simple-icons:apple" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:google" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:amazon" data-inline="false"></span>
</div>
</div>
</div>
<!-- İkinci İkon Kolonu: Microsoft, Facebook, Adobe -->
<div class="group overflow-hidden h-40 w-full max-w-[120px]">
<div class="animate-scrollUp">
<div class="flex flex-col gap-8 items-center mb-8">
<span class="iconify text-5xl" data-icon="simple-icons:microsoft" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:facebook" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:adobe" data-inline="false"></span>
</div>
<div class="flex flex-col gap-8 items-center">
<span class="iconify text-5xl" data-icon="simple-icons:microsoft" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:facebook" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:adobe" data-inline="false"></span>
</div>
</div>
</div>
<!-- Üçüncü İkon Kolonu: Netflix, Spotify, Nike -->
<div class="group overflow-hidden h-40 w-full max-w-[120px]">
<div class="animate-scrollUp">
<div class="flex flex-col gap-8 items-center mb-8">
<span class="iconify text-5xl" data-icon="simple-icons:netflix" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:spotify" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:nike" data-inline="false"></span>
</div>
<div class="flex flex-col gap-8 items-center">
<span class="iconify text-5xl" data-icon="simple-icons:netflix" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:spotify" data-inline="false"></span>
<span class="iconify text-5xl" data-icon="simple-icons:nike" data-inline="false"></span>
</div>
</div>
</div>
</div>
</div>
</div>