2026-05-12 16:34:26 +08:00
|
|
|
---
|
2026-05-12 17:30:21 +08:00
|
|
|
const bgPattern = "/assets/cta-bg-pattern.svg";
|
|
|
|
|
const talkproLogo = "/assets/cta-talkpro-logo.svg";
|
2026-05-12 17:14:50 +08:00
|
|
|
const androidIcon = "/assets/cta-android-icon.svg";
|
|
|
|
|
const appleIcon = "/assets/cta-apple-icon.svg";
|
|
|
|
|
const phoneArt = "/assets/cta-phone-art.png";
|
2026-05-12 16:34:26 +08:00
|
|
|
---
|
|
|
|
|
|
2026-05-12 17:45:23 +08:00
|
|
|
<section id="download" class="relative bg-white border-t border-[#eec8b8] w-full flex items-center justify-center overflow-hidden min-h-[400px] lg:h-[600px]">
|
2026-05-12 17:14:50 +08:00
|
|
|
<!-- Background pattern -->
|
|
|
|
|
<img alt="" class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 h-[923px] w-full max-w-[1920px] pointer-events-none" src={bgPattern} />
|
|
|
|
|
|
2026-05-12 17:45:23 +08:00
|
|
|
<div class="relative flex flex-col lg:flex-row items-center gap-8 lg:gap-0 w-full max-w-[1280px] mx-auto px-4 lg:px-0 py-12 lg:py-0">
|
2026-05-12 17:14:50 +08:00
|
|
|
<!-- Left: download panel -->
|
|
|
|
|
<div class="flex flex-1 flex-col gap-[36px] items-start justify-center min-w-0 overflow-clip">
|
|
|
|
|
<div class="bg-white border border-[#fbbfa3] flex items-center justify-center px-[24px] py-[12px] rounded-[9999px] shrink-0">
|
|
|
|
|
<span class="font-bold text-[#f08458] text-[14px] text-center tracking-[-0.04px] whitespace-nowrap leading-normal">DOWNLOAD</span>
|
|
|
|
|
</div>
|
2026-05-12 16:34:26 +08:00
|
|
|
|
2026-05-12 17:14:50 +08:00
|
|
|
<div class="flex flex-col gap-[16px] items-start w-full">
|
2026-05-12 17:45:23 +08:00
|
|
|
<div class="flex gap-[20px] items-start shrink-0 flex-wrap">
|
|
|
|
|
<p class="font-bold text-[#1a1a1a] text-[32px] md:text-[40px] lg:text-[48px] tracking-[-1.16px] leading-[1.2] whitespace-nowrap">Download</p>
|
2026-05-12 17:14:50 +08:00
|
|
|
<div class="relative shrink-0 h-[72px] w-[188px]">
|
|
|
|
|
<img alt="TalkPro" class="absolute inset-0 block max-w-none size-full" src={talkproLogo} />
|
|
|
|
|
</div>
|
2026-05-12 16:34:26 +08:00
|
|
|
</div>
|
2026-05-12 17:14:50 +08:00
|
|
|
<p class="font-normal text-[#7a726d] text-[18px] tracking-[-0.33px] leading-[1.5] max-w-[542px]">
|
|
|
|
|
Download TalkPro and experience a cleaner, simpler, and more modern way to stay connected.
|
|
|
|
|
</p>
|
2026-05-12 16:34:26 +08:00
|
|
|
</div>
|
|
|
|
|
|
2026-05-12 17:14:50 +08:00
|
|
|
<!-- Store badges -->
|
2026-05-12 17:45:23 +08:00
|
|
|
<div class="flex flex-wrap gap-[16px] items-center overflow-clip shrink-0">
|
|
|
|
|
<div class="bg-[#f28a4b] border border-[#c5834e] flex gap-[8px] h-[70px] items-center overflow-clip px-[16px] py-[12px] rounded-[20px] w-full sm:w-[260px] shrink-0">
|
2026-05-12 17:14:50 +08:00
|
|
|
<img alt="Android" class="block shrink-0 size-[44px]" src={androidIcon} />
|
|
|
|
|
<div class="flex flex-col gap-[3px] items-start overflow-clip shrink-0 whitespace-nowrap">
|
|
|
|
|
<p class="font-semibold text-[#ffd6bc] text-[11px] tracking-[0.05px] leading-normal">ANDROID</p>
|
|
|
|
|
<p class="font-semibold text-white text-[15px] tracking-[-0.13px] leading-normal">APK Coming Soon</p>
|
|
|
|
|
</div>
|
2026-05-12 16:34:26 +08:00
|
|
|
</div>
|
2026-05-12 17:45:23 +08:00
|
|
|
<div class="bg-[#383838] border border-[#141414] flex gap-[8px] h-[70px] items-center overflow-clip px-[16px] py-[12px] rounded-[20px] w-full sm:w-[260px] shrink-0">
|
2026-05-12 17:14:50 +08:00
|
|
|
<div class="bg-[#151515] flex items-center justify-center rounded-[12px] shrink-0 size-[44px]">
|
|
|
|
|
<img alt="Apple" class="block h-[27px] w-[22px]" src={appleIcon} />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex flex-col gap-[3px] items-start overflow-clip shrink-0 whitespace-nowrap">
|
|
|
|
|
<p class="font-semibold text-[#ccc] text-[11px] tracking-[0.05px] leading-normal">IOS</p>
|
|
|
|
|
<p class="font-semibold text-white text-[15px] tracking-[-0.13px] leading-normal">Coming on App Store</p>
|
|
|
|
|
</div>
|
2026-05-12 16:34:26 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-05-12 17:14:50 +08:00
|
|
|
|
2026-05-12 17:45:23 +08:00
|
|
|
<!-- Right: phone art (hidden on mobile) -->
|
|
|
|
|
<div class="hidden lg:block relative shrink-0 h-[510px] w-[418px]">
|
2026-05-12 17:14:50 +08:00
|
|
|
<div class="absolute inset-0 overflow-hidden pointer-events-none">
|
|
|
|
|
<img alt="TalkPro on phone" class="absolute h-[136.1%] left-[3.8%] max-w-none top-[-18.05%] w-[92.43%]" src={phoneArt} />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-05-12 16:34:26 +08:00
|
|
|
</div>
|
|
|
|
|
</section>
|