mirror of
https://github.com/jwetzell/showbridge-www.git
synced 2026-08-18 11:34:00 +00:00
67 lines
2.9 KiB
HTML
67 lines
2.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>showbridge</title>
|
|
<meta name="description" content="highly configurable protocol router" />
|
|
|
|
<!-- Google / Search Engine Tags -->
|
|
<meta itemprop="name" content="showbridge" />
|
|
<meta itemprop="description" content="highly configurable protocol router" />
|
|
<meta itemprop="image" content="assets/images/icon512x512.png" />
|
|
|
|
<!-- Facebook Meta Tags -->
|
|
<meta property="og:url" content="http://showbridge.io" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="showbridge" />
|
|
<meta property="og:description" content="highly configurable protocol router" />
|
|
<meta property="og:image" content="assets/images/icon512x512.png" />
|
|
|
|
<!-- Twitter Meta Tags -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="showbridge" />
|
|
<meta name="twitter:description" content="highly configurable protocol router" />
|
|
<meta name="twitter:image" content="assets/images/icon512x512.png" />
|
|
|
|
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico" />
|
|
<!-- <link href="assets/css/tailwind.css" rel="stylesheet" /> -->
|
|
<script defer src="assets/js/tracking.js"></script>
|
|
<link href="assets/css/tailwind.css" rel="stylesheet" />
|
|
</head>
|
|
<body class="h-screen w-screen flex flex-col justify-center items-center">
|
|
<a class="w-40 h-40 bg-blue-400" href="https://github.com/jwetzell/showbridge" data-umami-event="logo-click"> </a>
|
|
<div class="text-5xl mb-2">showbridge</div>
|
|
<div class="flex justify-between w-full pt-2">
|
|
<div class="flex justify-end flex-grow basis-0 mx-2">
|
|
<a
|
|
target="_blank"
|
|
class="inline-block rounded border border-blue-400 px-12 py-3 text-sm font-medium text-blue-600 hover:bg-blue-400 hover:text-white focus:outline-none focus:ring active:bg-blue-500"
|
|
href="https://demo.showbridge.io"
|
|
data-umami-event="demo-click">
|
|
Demo
|
|
</a>
|
|
</div>
|
|
<div class="mx-2">
|
|
<a
|
|
target="_blank"
|
|
class="inline-block rounded border border-blue-400 px-12 py-3 text-sm font-medium text-blue-600 hover:bg-blue-400 hover:text-white focus:outline-none focus:ring active:bg-blue-500 mx-4"
|
|
href="https://github.com/jwetzell/showbridge/releases/latest"
|
|
data-umami-event="download-click">
|
|
Download
|
|
</a>
|
|
</div>
|
|
<div class="flex flex-grow basis-0 justify-start mx-2">
|
|
<a
|
|
target="_blank"
|
|
class="inline-block rounded border border-blue-400 px-12 py-3 text-sm font-medium text-blue-600 hover:bg-blue-400 hover:text-white focus:outline-none focus:ring active:bg-blue-500"
|
|
href="https://docs.showbridge.io"
|
|
data-umami-event="docs-click">
|
|
Docs
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|