Files
firezone/rust/gui-client/src/welcome.html
Thomas Eizinger 5a12dcb5b3 fix(gui-client): migrate to tailwind v4 (#8105)
With the dependency bump in #7995, we introduced a visual regression
that made all windows lose their styling:


![image](https://github.com/user-attachments/assets/9c9921a7-cab0-4adc-9868-cd7ddec40c64)

The changelog to the v4 bump actually mentions some breaking changes and
an automated upgrade tool but both the reviewer and the author of the PR
missed that.
2025-02-12 19:19:18 +00:00

35 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
<link rel="stylesheet" href="output.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to Firezone</title>
<script type="module" src="./flowbite.min.js" defer></script>
<script type="module" src="welcome.ts" defer></script>
</head>
<body class="bg-neutral-100 text-neutral-900">
<div class="container mx-auto">
<div class="flex justify-center mt-8">
<h1 class="text-3xl font-bold">Welcome to Firezone.</h1>
</div>
<p class="mt-8 flex justify-center">Sign in below to get started.</p>
<img
src="logo.png"
alt="Firezone Logo"
class="mt-8 rounded-full w-48 h-48 mx-auto bg-white shadow-sm border-2 border-black"
/>
<div class="flex justify-center mt-8">
<button
class="text-white bg-accent-450 hover:bg-accent-700 font-medium rounded-sm text-lg w-full sm:w-auto px-5 py-2.5 text-center"
id="sign-in"
>
Sign in
</button>
</div>
</div>
</body>
</html>