Bold Horizon Gallery Gallery Block - Let's templates
Unlock every premium block and template with All-Access from €20 / 3 months, cancel anytime. Get All-Access
All blocks
Free Gallery

Bold Horizon Gallery

A gallery block extracted from the Bold Horizon template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.

0 6
Bold Horizon Gallery preview
bold-horizon.html
<!DOCTYPE html>
<html lang="en">
<head>
    <script>
        window.FontAwesomeConfig = {
          autoReplaceSvg: 'nest'
        };
      </script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bold Horizon Gallery | Tailwind CSS UI Block</title>
    <meta name="description" content="A gallery block extracted from the Bold Horizon template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.">
    <meta name="keywords" content="Bold Horizon, Tailwind CSS template, HTML website template, business transformation, management consulting, case study landing page, responsive corporate design">
    <meta name="author" content="Let's templates">
    <link rel="canonical" href="">

    <meta property="og:type" content="product">
    <meta property="og:site_name" content="Let's templates">
    <meta property="og:locale" content="en_US">
    <meta property="og:url" content="">
    <meta property="og:title" content="Bold Horizon | Tailwind CSS Business Transformation Template">
    <meta property="og:description" content="A bold Tailwind CSS consulting template for business transformation firms, case studies, leadership insights, and corporate strategy teams.">
    <meta property="og:image" content="">
    <meta property="og:image:alt" content="Bold Horizon template preview">

    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:url" content="">
    <meta name="twitter:title" content="Bold Horizon | Tailwind CSS Business Transformation Template">
    <meta name="twitter:description" content="A bold Tailwind CSS consulting template for business transformation firms, case studies, leadership insights, and corporate strategy teams.">
    <meta name="twitter:image" content="">
    <meta name="twitter:image:alt" content="Bold Horizon template preview">
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Archivo:wght@400;700;900&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
    <style>
        html {
            overflow-x: hidden;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #000000;
            overflow-x: hidden;
        }
        h1, h2, h3, .font-bold-title {
            font-family: 'Archivo', sans-serif;
            text-transform: uppercase;
        }
        .text-huge {
            font-size: clamp(2.75rem, 11vw, 18rem);
            line-height: 0.85;
            letter-spacing: -0.04em;
        }
        .text-mega {
            font-size: clamp(2rem, 7.5vw, 8rem);
            line-height: 0.92;
            letter-spacing: -0.03em;
        }
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    </style>
</head>
<body class="antialiased overflow-x-hidden">
<!-- block:start gallery -->
    <section id="more-cases" class="py-12 md:py-20 overflow-hidden">
        <div class="max-w-5xl mx-auto px-4 sm:px-6">
            <div class="grid grid-cols-1 md:grid-cols-2 gap-12 md:gap-20">
                <div class="space-y-6 md:space-y-8">
                    <div class="aspect-[4/5] overflow-hidden relative rounded-xl md:rounded-none">
                        <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_a6bb8a9354_c60b8eaba460a8b1.png" alt="lifestyle shot of a professional woman working in a modern cafe, editorial style" />
                        <div class="absolute inset-0 flex items-center justify-center">
                            <span class="text-white text-4xl sm:text-5xl font-black italic">Soli</span>
                        </div>
                    </div>
                    <p class="text-xs leading-relaxed text-neutral-500">
                        Through a complete digital transformation, Soli streamlined its operations, improved efficiency, and eliminated costly bottlenecks. By introducing data-driven decision-making and modern customer engagement tools, the company unlocked new revenue streams and strengthened long-term profitability.
                    </p>
                </div>
                <div class="space-y-6 md:space-y-8">
                    <div class="aspect-[4/5] overflow-hidden relative rounded-xl md:rounded-none">
                        <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_3d1e962d21_74e113399c279d32.png" alt="high-end artisanal bakery shop interior, minimal design" />
                        <div class="absolute inset-0 flex items-center justify-center px-4 text-center">
                            <span class="text-white text-3xl sm:text-4xl font-black italic">Crust &<br>Crème</span>
                        </div>
                    </div>
                    <p class="text-xs leading-relaxed text-neutral-500">
                        By optimizing supply chain processes and introducing smarter digital tools, Crust & Crème improved efficiency across its bakery operations. The company reduced waste, enhanced customer experience, and created a solid foundation for sustained profitability and growth.
                    </p>
                </div>
            </div>
        </div>
    </section>
    <!-- block:end gallery -->
<script>
        (function () {
            var button = document.getElementById('hero-menu-button');
            var navigation = document.getElementById('hero-navigation');
            var iconOpen = document.getElementById('hero-menu-icon-open');
            var iconClose = document.getElementById('hero-menu-icon-close');
            if (!button || !navigation) return;

            function setHeroMenu(open) {
                navigation.classList.toggle('hidden', !open);
                navigation.classList.toggle('flex', open);
                button.setAttribute('aria-expanded', String(open));
                button.setAttribute('aria-label', open ? 'Close navigation' : 'Open navigation');
                if (iconOpen && iconClose) {
                    iconOpen.classList.toggle('hidden', open);
                    iconClose.classList.toggle('hidden', !open);
                }
            }

            button.addEventListener('click', function (event) {
                event.stopPropagation();
                setHeroMenu(navigation.classList.contains('hidden'));
            });

            navigation.querySelectorAll('a').forEach(function (link) {
                link.addEventListener('click', function () {
                    if (window.matchMedia('(max-width: 767px)').matches) {
                        setHeroMenu(false);
                    }
                });
            });

            document.addEventListener('click', function (event) {
                if (window.matchMedia('(max-width: 767px)').matches &&
                    navigation.classList.contains('flex') &&
                    !navigation.contains(event.target) &&
                    !button.contains(event.target)) {
                    setHeroMenu(false);
                }
            });
        })();
    </script>
</body>
</html>

From this template

Bold Horizon screenshot Free

Agency

Bold Horizon

Unlimited access to all products

Unlock the entire library of premium templates and blocks. Renews automatically, cancel anytime.

€20 / 3 months or €60 / year
Get Unlimited Access