Set up gateway, gitea & immich

This commit is contained in:
2024-10-03 22:52:55 +01:00
commit 5014282769
15 changed files with 797 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Applications</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<ul class="app-grid">
<li class="app-item">
<a href="https://immich.64815139.xyz" target="_blank">
<div class="app-icon-wrapper">
<img src="icons/immich.svg" alt="Immich" class="app-icon">
</div>
<span class="app-name">Photos</span>
</a>
</li>
<li class="app-item">
<a href="https://gitea.64815139.xyz/user/login" target="_blank">
<div class="app-icon-wrapper">
<img src="icons/gitea.svg" alt="Gitea" class="app-icon">
</div>
<span class="app-name">Gitea</span>
</a>
</li>
<!-- Add more application links here -->
</ul>
</div>
</body>
</html>