mirror of
https://github.com/ianramzy/decentralized-video-chat.git
synced 2024-11-14 22:29:20 +08:00
110 lines
5.3 KiB
HTML
Executable File
110 lines
5.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en" class="no-js">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Neon Chat</title>
|
|
<link rel="stylesheet" href="css/landing.css">
|
|
<link rel="shortcut icon" href="images/logo.svg">
|
|
<meta property="og:title" content="Neonchat - Decentralized video calls">
|
|
<meta property="og:description" content="Decentralized video
|
|
calling provides real-time HD quality and latency simply
|
|
not available with traditional technology.">
|
|
<meta property="og:image" content="https://neonchat.io/images/preview.png">
|
|
<meta property="og:url" content="https://neonchat.io/">
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162048272-1"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'UA-162048272-1');
|
|
</script>
|
|
</head>
|
|
<body class="has-animations">
|
|
<div class="body-wrap">
|
|
<header class="site-header reveal-from-top">
|
|
<div class="container">
|
|
<div class="site-header-inner">
|
|
<div class="brand"><h1 class="m-0"><a href="/"><img src="images/logo.svg" alt="Neon"
|
|
width="32"
|
|
height="32"></a></h1></div>
|
|
<button id="header-nav-toggle" class="header-nav-toggle" aria-controls="primary-menu"
|
|
aria-expanded="false"><span class="screen-reader">Menu</span> <span class="hamburger"><span
|
|
class="hamburger-inner"></span></span></button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<main class="site-content">
|
|
|
|
<section class="hero section illustration-section-01">
|
|
<div class="container">
|
|
<div class="hero-inner section-inner">
|
|
<div class="split-wrap invert-mobile">
|
|
<div class="split-item">
|
|
<div class="hero-content split-item-content center-content-mobile">
|
|
<h1 class="mt-0 mb-16 reveal-from-bottom" data-reveal-delay="150">
|
|
Get room. <br> Share URL. <br> Start chatting.</h1>
|
|
<p class="mt-0 mb-32 reveal-from-bottom" data-reveal-delay="300">
|
|
Each chat has its own disposable URL, just get a room and share your custom link.
|
|
It's really that easy.
|
|
</p>
|
|
</div>
|
|
<style>@media (min-width: 641px) {
|
|
.hero .split-wrap .split-item {
|
|
min-height: 492px
|
|
}
|
|
}</style>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta section center-content-mobile reveal-from-bottom">
|
|
<div class="container">
|
|
<div class="cta-inner section-inner cta-split">
|
|
<div class="cta-slogan"><h3 class="m-0">Pick a room name.<br> How about this one?</h3></div>
|
|
<div class="cta-action">
|
|
<div class="mb-24" style="margin-top: 30px">
|
|
<label class="form-label screen-reader" for="input-01">This is a label</label>
|
|
<div class="form-group-desktop">
|
|
<input class="form-input" type="text" id="input-01" value="PurpleSquid">
|
|
<button class="button button-primary pulse"
|
|
onclick="{window.location.href = '/room/' + document.getElementById('input-01').value}">
|
|
Go To My Room
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
</main>
|
|
<footer class="site-footer center-content-mobile">
|
|
<div class="container">
|
|
<div class="site-footer-inner">
|
|
<div class="footer-top space-between text-xxs">
|
|
<div class="brand">
|
|
<a href="/"><img src="images/logo.svg" alt="Neon" width="32" height="32"></a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom space-between text-xxs invert-order-desktop">
|
|
<nav class="footer-nav">
|
|
<ul class="list-reset">
|
|
<li><a href="https://ianramzy.com">Another Project By Ian Ramzy</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="footer-copyright">© 2020 Neon Chat, all rights reserved</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="js/landing.js"></script>
|
|
<script src="js/newroom.js"></script>
|
|
</body>
|
|
</html> |