@if($landingPage->hero_headline)
{{ $landingPage->hero_headline }}
@endif
@if($landingPage->hero_subheadline)
{{ $landingPage->hero_subheadline }}
@endif
@endif
@if($landingPage->video_url)
@php
$heroVidId = null;
if (preg_match('/(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?|shorts)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/ ]{11})/', $landingPage->video_url, $m)) {
$heroVidId = $m[1];
}
$isAutoplay = $landingPage->video_autoplay ?? true;
$ratio = $landingPage->video_ratio ?? '16:9';
// Enables native controls (time bar, seek, full screen) while keeping clean aesthetic
$autoParam = $isAutoplay ? 'autoplay=1&mute=0' : 'autoplay=0&mute=0';
$heroAutoplayUrl = $heroVidId
? "https://www.youtube-nocookie.com/embed/{$heroVidId}?{$autoParam}&controls=1&rel=0&modestbranding=1&enablejsapi=1&fs=1&playsinline=1&loop=1&playlist={$heroVidId}"
: $landingPage->video_url;
// Container aspect ratio class
$containerClass = 'max-w-4xl aspect-video';
if ($ratio === '9:16') {
$containerClass = 'max-w-full sm:max-w-[400px] aspect-[9/16] min-h-[480px] sm:min-h-[640px]';
} elseif ($ratio === '1:1') {
$containerClass = 'max-w-md aspect-square';
}
@endphp
প্রোডাক্টের অরিজিনাল ছবি (ক্লিক করে ফুল HD জুম দেখুন):
ফুল স্ক্রিন HD জুম দেখতে ক্লিক করুন
@foreach($landingPage->gallery_images as $gIndex => $gImg)
@endforeach
@endif
@if($primaryProduct)
@if($primaryProduct->discount_price)
৳{{ number_format($primaryProduct->discount_price, 0) }}
৳{{ number_format($primaryProduct->price, 0) }}
ডিসকাউন্ট অফার
@else
৳{{ number_format($primaryProduct->price, 0) }}
@endif
অর্ডার করতে এখানে ক্লিক করুন
@endif