init comit
Some checks failed
Build and Push Docker Image to Gitea Registry / build-and-push (push) Failing after 3s

This commit is contained in:
jafreli
2025-01-16 03:17:39 +01:00
commit a139b7749f
4 changed files with 94 additions and 0 deletions

17
view/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Links</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>My Links</h1>
<a class="link" href="hhttps://git.out.jafre.li/jafreli/Linktree" target="_blank">LinkTree Sourcecode</a>
<a class="link" href="https://anotherexample.com" target="_blank">Example Link 2</a>
<a class="link" href="https://yetanotherexample.com" target="_blank">Example Link 3</a>
</div>
</body>
</html>

36
view/styles.css Normal file
View File

@@ -0,0 +1,36 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
max-width: 400px;
width: 90%;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
.link {
display: block;
margin: 10px 0;
padding: 10px;
background: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease;
}
.link:hover {
background: #0056b3;
}