153 lines
6.6 KiB
HTML
153 lines
6.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Lumerel — Web3 at the Speed of Experience</title>
|
|
|
|
<!-- General Sans from Fontshare -->
|
|
<link rel="preconnect" href="https://api.fontshare.com" />
|
|
<link
|
|
href="https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<!-- Spline Runtime (3D asset support) -->
|
|
<script type="module" src="https://unpkg.com/@splinetool/viewer@1.9.96/build/spline-viewer.js"></script>
|
|
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<!-- ═══════════════════════════════════════════
|
|
HERO SECTION
|
|
═══════════════════════════════════════════ -->
|
|
<section class="hero" id="hero">
|
|
|
|
<!-- Background Video -->
|
|
<div class="hero__video-wrap">
|
|
<video
|
|
class="hero__video"
|
|
src="https://d8j0ntlcm91z4.cloudfront.net/user_38xzZboKViGWJOttwIXH07lWA1P/hf_20260217_030345_246c0224-10a4-422c-b324-070b7c0eceda.mp4"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
preload="auto"
|
|
></video>
|
|
<!-- 50% Black overlay -->
|
|
<div class="hero__overlay"></div>
|
|
</div>
|
|
|
|
<!-- 3D Spline Layer — sits above video, below content -->
|
|
<div class="hero__3d-layer" id="spline-layer">
|
|
<!--
|
|
┌─────────────────────────────────────────────────────────────┐
|
|
│ SPLINE 3D PLACEHOLDER │
|
|
│ Replace the placeholder div below with a <spline-viewer> │
|
|
│ element once you have your Spline scene URL, e.g.: │
|
|
│ │
|
|
│ <spline-viewer │
|
|
│ url="https://prod.spline.design/YOUR_SCENE_ID/scene.splinecode" │
|
|
│ events-target="global" │
|
|
│ ></spline-viewer> │
|
|
└─────────────────────────────────────────────────────────────┘
|
|
-->
|
|
<div class="hero__3d-placeholder">
|
|
<div class="placeholder-orb placeholder-orb--1"></div>
|
|
<div class="placeholder-orb placeholder-orb--2"></div>
|
|
<div class="placeholder-orb placeholder-orb--3"></div>
|
|
<p class="placeholder-label">3D Spline Asset Placeholder</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ── NAVBAR ─────────────────────────────── -->
|
|
<nav class="navbar">
|
|
<div class="navbar__inner">
|
|
|
|
<!-- Left: Logo + Nav Links -->
|
|
<div class="navbar__left">
|
|
<!-- Logo Wordmark -->
|
|
<a href="#" class="navbar__logo" aria-label="Lumerel">
|
|
<svg class="navbar__logo-svg" viewBox="0 0 187 25" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<!-- Wordmark: LUMEREL -->
|
|
<text x="0" y="20" font-family="'General Sans', sans-serif" font-size="22" font-weight="600" fill="white" letter-spacing="3">LUMEREL</text>
|
|
</svg>
|
|
</a>
|
|
|
|
<!-- Nav Links (hidden on mobile) -->
|
|
<nav class="navbar__links" aria-label="Primary navigation">
|
|
<a href="#" class="navbar__link">
|
|
Get Started
|
|
<svg class="navbar__chevron" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<path d="M3 5L7 9L11 5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|
|
</a>
|
|
<a href="#" class="navbar__link">
|
|
Developers
|
|
<svg class="navbar__chevron" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<path d="M3 5L7 9L11 5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|
|
</a>
|
|
<a href="#" class="navbar__link">
|
|
Features
|
|
<svg class="navbar__chevron" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<path d="M3 5L7 9L11 5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|
|
</a>
|
|
<a href="#" class="navbar__link">
|
|
Resources
|
|
<svg class="navbar__chevron" width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
<path d="M3 5L7 9L11 5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
</svg>
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
|
|
<!-- Right: Join Waitlist Button -->
|
|
<div class="navbar__right">
|
|
<button class="btn-pill btn-pill--dark" type="button">
|
|
<span class="btn-pill__glow"></span>
|
|
<span class="btn-pill__label">Join Waitlist</span>
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- ── HERO CONTENT ──────────────────────── -->
|
|
<div class="hero__content">
|
|
|
|
<!-- Badge -->
|
|
<div class="badge" role="note">
|
|
<span class="badge__dot" aria-hidden="true"></span>
|
|
<span class="badge__text">
|
|
Early access available from
|
|
<span class="badge__date"> May 1, 2026</span>
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Heading -->
|
|
<h1 class="hero__heading">
|
|
Web3 at the Speed of Experience
|
|
</h1>
|
|
|
|
<!-- Subtitle -->
|
|
<p class="hero__subtitle">
|
|
Powering seamless experiences and real-time connections, Lumerel is the base for creators who move with purpose, leveraging resilience, speed, and scale to shape the future.
|
|
</p>
|
|
|
|
<!-- CTA Button -->
|
|
<button class="btn-pill btn-pill--light" type="button">
|
|
<span class="btn-pill__glow btn-pill__glow--light" aria-hidden="true"></span>
|
|
<span class="btn-pill__label">Join Waitlist</span>
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|