Velaro UI Template - Let's templates
Velaro preview
Premium
1 13

Velaro

description

Live Demo
velaro-tailwind.html
<!DOCTYPE html>
<html lang="en">
<head>
    <script>
        window.FontAwesomeConfig = {
          autoReplaceSvg: 'nest'
        };
      </script>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <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>Velaro | Define Your Everyday Luxury</title>
    <meta name="description" content="Velaro is a bold Tailwind CSS fashion website template for showcasing modern clothing, premium streetwear, and everyday luxury collections.">
    <meta name="keywords" content="Velaro, Tailwind CSS template, HTML website template, fashion website template, streetwear landing page, modern clothing, responsive ecommerce design">
    
    <!-- Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
    
    <style>
        :root {
            --color-orange: #f25019;
            --color-softorange: #ff7847;
            --color-yellow: #ffd600;
            --color-charcoal: #121212;
            --color-alabaster: #ffffff;
            --container-max: 1200px;
        }

        /* Base Reset */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-orange);
            color: var(--color-alabaster);
            overflow-x: hidden;
            line-height: 1.5;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Layout Helpers */
        .flex { display: flex; }
        .flex-column { flex-direction: column; }
        .grid { display: grid; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .gap-4 { gap: 1rem; }
        .gap-8 { gap: 2rem; }
        .w-full { width: 100%; }
        .h-full { height: 100%; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .inset-0 { top: 0; left: 0; right: 0; bottom: 0; }
        .text-center { text-align: center; }
        .uppercase { text-transform: uppercase; }

        .font-impact {
            font-family: 'Impact', 'Arial Narrow Bold', sans-serif;
            text-transform: uppercase;
            font-stretch: extra-condensed;
            letter-spacing: -0.05em;
        }

        .grain {
            position: fixed;
            inset: 0;
            background-image: url("https://grainy-gradients.vercel.app/noise.svg");
            filter: contrast(150%) brightness(100%);
            opacity: 0.2;
            pointer-events: none;
            z-index: 100;
        }

        /* Navigation */
        header#header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        nav a:hover { color: #fff; }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        /* Hero Section */
        .hero-section {
            height: 900px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-title {
            font-size: 14vw;
            line-height: 1;
            z-index: 10;
            margin: 0;
        }

        .backdrop-blur {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.1);
        }

        .image-mask {
            mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
        }

        .hero-assets {
            display: flex;
            align-items: center;
            margin-left: -1.5rem;
        }

        .asset-box {
            width: 8vw;
            height: 8vw;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            margin-left: -1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Marquee */
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
        .marquee-section {
            padding: 3rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }

        /* Bento Grid */
        .bento-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 400px);
        }
        .col-span-2 { grid-column: span 2; }
        .row-span-2 { grid-row: span 2; }

        .feature-card {
            background: #f8f8f8;
            border-radius: 1.5rem;
            overflow: hidden;
            color: var(--color-charcoal);
        }

        .feature-card.dark {
            background: var(--color-charcoal);
            color: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .btn-custom {
            padding: 1.25rem 3rem;
            border-radius: 0.75rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            text-transform: uppercase;
            border: none;
            background: var(--color-yellow);
            color: var(--color-charcoal);
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        .btn-custom:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Pricing/Membership Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .price-card {
            background: white;
            color: var(--color-charcoal);
            padding: 2.5rem;
            border-radius: 1.5rem;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
        }
        .price-card.featured {
            border: 2px solid var(--color-charcoal);
            position: relative;
        }

        /* Footer */
        footer {
            background: var(--color-charcoal);
            padding: 5rem 4rem 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        @media (max-width: 768px) {
            header#header { padding: 1.5rem; }
            .hero-section { height: 700px; }
            .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .pricing-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }
    </style>
</head>
<body>
    <div class="grain"></div>

    <!-- block:start navigation -->
    <header id="header">
        <div>
            <a href="#" class="logo font-impact">
                VELARO
            </a>
        </div>

        <nav>
            <ul>
                <li><a href="#">NEW ARRIVALS</a></li>
                <li><a href="#">MEN</a></li>
                <li><a href="#">WOMEN</a></li>
                <li><a href="#">COLLECTION</a></li>
                <li><a href="#">ARCHIVE</a></li>
            </ul>
        </nav>

        <div class="nav-actions">
            <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
            <div class="flex items-center gap-4" style="font-size: 12px; font-weight: 500;">
                Cart
                <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>
            </div>
        </div>
    </header>
    <!-- block:end navigation -->

    <main>
        <!-- block:start hero -->
        <section id="hero" class="hero-section">
            <div class="absolute inset-0 flex flex-column items-center justify-center pointer-events-none" style="z-index: 1;">
                <div class="flex items-center gap-4" style="margin-top: -5vw;">
                    <h1 class="hero-title font-impact">DEFINE</h1>
                    <div class="hero-assets mt-3">
                        <div class="asset-box bg-yellow" style="transform: rotate(-5deg);">
                            <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_48f227cdb1_d3c01d367129450d.png" alt="modern floral silk shirt detail, warm studio lighting, fashion product photography" />
                        </div>
                        <div class="asset-box bg-white rounded-circle" style="border: 4px solid var(--color-orange);">
                            <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_24298bfdf1_b91c3eaad8f5e5df.png" alt="fashion editorial portrait of a woman, minimal makeup, high-end aesthetic, soft natural lighting" />
                        </div>
                        <div class="asset-box backdrop-blur flex items-center justify-center">
                            <span class="font-impact" style="font-size: 3rem;">V</span>
                        </div>
                    </div>
                    <h1 class="hero-title font-impact">YOUR</h1>
                </div>
            </div>

            <!-- Central Subject -->
            <div class="absolute inset-0 flex justify-center items-end pointer-events-none" style="z-index: 2;">
                <div class="image-mask" style="width: 550px; height: 780px;">
                    <img class="w-full h-full object-cover" style="object-position: top; transform: scale(1.1);" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_d959d2a8cd_7bb393754b109640.png" alt="full body high fashion model wearing oversized luxury streetwear, minimal background, orange and cha" />
                </div>
            </div>

            <div class="absolute inset-0 flex items-center justify-center pointer-events-none" style="z-index: 3; margin-top: 18vw;">
                <h1 class="hero-title font-impact">EVERYDAY LUXURY</h1>
            </div>

            <!-- Shop Button Floating -->
            <div class="absolute" style="left: 4rem; bottom: 4rem; z-index: 4; max-width: 300px;">
                <p style="font-size: 14px; opacity: 0.8; margin-bottom: 2rem;">Modern clothing crafted for those who value simplicity, quality, and timeless appeal.</p>
                <a href="#" class="btn-custom">SHOP NOW</a>
            </div>
        </section>
        <!-- block:end hero -->

        <!-- block:start marquee -->
        <section id="marquee" class="marquee-section">
            <div class="animate-marquee">
                <h2 class="font-impact" style="font-size: 8rem; display: inline-block; padding: 0 2rem;">
                    VELARO — NEW ARRIVALS — ATELIER 2026 — VELARO — NEW ARRIVALS — ATELIER 2026 —
                </h2>
                <h2 class="font-impact" style="font-size: 8rem; display: inline-block; padding: 0 2rem;">
                    VELARO — NEW ARRIVALS — ATELIER 2026 — VELARO — NEW ARRIVALS — ATELIER 2026 —
                </h2>
            </div>
        </section>
        <!-- block:end marquee -->

        <!-- block:start features -->
        <section id="features" style="padding: 100px 0; background: var(--color-alabaster);">
            <div class="container">
                <div class="bento-grid">
                    <div class="feature-card col-span-2 row-span-2">
                        <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_645d5f68fc_bd95ca564e7db29a.png" alt="luxury minimal fashion studio shot, clean architectural lines, premium texture" />
                    </div>
                    <div class="feature-card">
                        <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_0e801c6b12_a56d354561f6d563.png" alt="close up of premium fabric texture, high resolution, minimalist aesthetic" />
                    </div>
                    <div class="feature-card dark">
                        <h3 style="font-size: 2.5rem; line-height: 1.1;">Crafted for the bold.</h3>
                        <p style="opacity: 0.7;">Every piece is a statement of intention and restraint.</p>
                    </div>
                    <div class="feature-card col-span-2">
                        <img class="w-full h-full object-cover" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_29562c62b8_91fc7eb268b818ca.png" alt="fashion editorial composition, luxury apparel, minimalist background" />
                    </div>
                </div>
            </div>
        </section>
        <!-- block:end features -->

        <!-- block:start membership -->
        <section id="membership" style="padding: 100px 0; background: #fff;">
            <div class="container">
                <h2 class="font-impact" style="font-size: 4rem; margin-bottom: 1rem; color: #121212;">Join the Circle</h2>
                <p style="color: #666; margin-bottom: 4rem;">Three ways to engage with Velaro—choose your level of access.</p>

                <div class="pricing-grid">
                    <div class="price-card">
                        <h3 style="font-size: 1.5rem; margin-bottom: 1rem;">The Enthusiast</h3>
                        <p style="font-size: 14px; color: #666; margin-bottom: 2rem;">Early look at seasonal drops and member-only styling notes.</p>
                        <a href="#" class="btn-custom" style="background: transparent; border: 1px solid #121212; text-align: center; margin-top: auto;">Become a Member</a>
                    </div>
                    <div class="price-card featured">
                        <div style="position: absolute; top: -12px; left: 2rem; background: #121212; color: white; padding: 4px 12px; font-size: 10px; font-weight: 700; border-radius: 4px;">RECOMMENDED</div>
                        <h3 style="font-size: 1.5rem; margin-bottom: 1rem;">The Collector</h3>
                        <p style="font-size: 14px; color: #666; margin-bottom: 2rem;">Private previews, exclusive drops, and dedicated support.</p>
                        <a href="#" class="btn-custom" style="background: #121212; color: white; text-align: center; margin-top: auto;">Become a Member</a>
                    </div>
                    <div class="price-card">
                        <h3 style="font-size: 1.5rem; margin-bottom: 1rem;">The Atelier VIP</h3>
                        <p style="font-size: 14px; color: #666; margin-bottom: 2rem;">Full backstage access and one-on-one design consultations.</p>
                        <a href="#" class="btn-custom" style="background: transparent; border: 1px solid #121212; text-align: center; margin-top: auto;">Become a Member</a>
                    </div>
                </div>
            </div>
        </section>
        <!-- block:end membership -->
    </main>

    <!-- block:start footer -->
    <footer id="footer">
        <div class="container">
            <div class="footer-grid">
                <div>
                    <span class="font-impact" style="font-size: 6rem; line-height: 1;">VELARO</span>
                    <p style="opacity: 0.5; margin-top: 2rem; max-width: 400px;">A new standard in everyday luxury—crafted for those who move through the world with intention.</p>
                </div>
                <nav>
                    <ul style="display: flex; flex-direction: column; gap: 1rem; list-style: none;">
                        <li><a href="#" style="font-size: 1.5rem; color: white; text-decoration: none;">New Arrivals</a></li>
                        <li><a href="#" style="font-size: 1.5rem; color: white; text-decoration: none;">Collections</a></li>
                        <li><a href="#" style="font-size: 1.5rem; color: white; text-decoration: none;">Journal</a></li>
                    </ul>
                </nav>
                <nav>
                    <ul style="display: flex; flex-direction: column; gap: 1rem; list-style: none;">
                        <li><a href="#" style="font-size: 1.5rem; color: white; text-decoration: none;">About</a></li>
                        <li><a href="#" style="font-size: 1.5rem; color: white; text-decoration: none;">Press</a></li>
                        <li><a href="#" style="font-size: 1.5rem; color: white; text-decoration: none;">Contact</a></li>
                    </ul>
                </nav>
            </div>
            <div style="padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center;">
                <div style="display: flex; align-items: center; gap: 0.5rem; font-size: 12px; font-weight: 700;">
                    <div style="width: 8px; height: 8px; background: #22c55e; border-radius: 50%;"></div>
                    AVAILABLE WORLDWIDE
                </div>
                <p style="font-size: 12px; opacity: 0.3;">© 2026 Velaro Inc. All rights reserved.</p>
            </div>
        </div>
    </footer>
    <!-- block:end footer -->
</body>
</html>

Unlimited access to all templates

Unlock our entire library of premium UI kits, dashboards, and landing pages with a single yearly payment.

€60 per year
Get Unlimited Access

More Business Templates