Files
firezone/rust/windows-client/src/about.html
Jamil 91d9e86773 fix(windows): Remove exec perms on Windows files (#3223)
Somehow these files keep getting `755` permissions applied to them --
maybe there's a `chmod -R 0755` script being run somewhere?
2024-01-14 14:29:35 +00:00

37 lines
816 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Firezone</title>
<script type="module" src="/main.js" defer></script>
<style>
.logo.vanilla:hover {
filter: drop-shadow(0 0 2em #ffe21c);
}
</style>
</head>
<body>
<div class="container">
<h1>About Firezone</h1>
<div class="row">
<a href="https://www.firezone.dev/?utm_source=windows-client" target="_blank">
firezone.dev
</a>
</a>
</div>
<div class="row">
<a href="steam://browsemedia" target="_blank">
app link?
</a>
</a>
</div>
</div>
</body>
</html>