assets/src/pages/index.astro

23 lines
749 B
Text

---
import './style.css';
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Files</title>
<link rel="favicon" href="/favicon.png">
</head>
<body>
<h1>Welcome to the Files Page!</h1>
<p class="center">Home to APKs and Project Capture</p>
<div class="link-row center">
<a href="/downloads">Downloads</a>
<a href="/pasquale">Project Capture - Pasquale Files</a>
<a href="/Project%20Capture/Trellis%20Incident.zip">Project Capture - Trellis Incident</a>
</div>
<p class="center">&copy; 2026 Ahyan Zaman</p>
</body>
</html>