assets/src/pages/index.astro

22 lines
630 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 the Pasquale Files</p>
<div class="link-row center">
<a href="/downloads">Downloads</a>
<a href="/pasquale">Pasquale Files</a>
</div>
<p class="center">&copy; 2026 Ahyan Zaman</p>
</body>
</html>