added base code

This commit is contained in:
Jonas_Jones 2025-06-09 00:14:39 +02:00
parent 8ec95f5d7f
commit 4f717a05dd
6 changed files with 419 additions and 0 deletions

27
public/index.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX Projects Viewer</title>
<style>
body {
margin: 0;
padding: 2rem;
font-family: sans-serif;
background: #121212;
color: #eee;
}
h1 {
margin-bottom: 0.5rem;
}
p {
max-width: 600px;
}
</style>
</head>
<body>
<h1>Welcome</h1>
<p>This is a static interface for viewing LaTeX projects. If you have a direct link to a project, you can view its source and compiled output there.</p>
</body>
</html>