mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 10:18:51 +00:00
Somehow these files keep getting `755` permissions applied to them -- maybe there's a `chmod -R 0755` script being run somewhere?
37 lines
816 B
HTML
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>
|