Major Changes

This commit is contained in:
Ahyan Z 2026-05-30 10:52:47 +01:00
parent bf716a6db8
commit 1541da74a1
5 changed files with 95 additions and 2 deletions

23
src/pages/downloads.astro Normal file
View file

@ -0,0 +1,23 @@
---
import './style.css';
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Downloads</title>
<link rel="favicon" href="/favicon.png">
</head>
<body>
<h1>Downloads:</h1>
<p class="center">ValoriaSnap:</p>
<a class="center" href="/ValoriaSnap/Snapchat_4.1.07_Patched with ValoriaSnap_R1_signed.apk">4.1.07 (R1)</a>
<a class="center" href="/ValoriaSnap/Snapchat_4.1.07_Patched with ValoriaSnap_R2_signed.apk">4.1.07 (R2)</a>
<p class="center">Blueblips (Android):</p>
<a class="center" href="/Blueblips/Twitter_5.45_Patched with Blueblips, R1_signed.apk">5.45 (R1)</a>
<a class="center" href="/Blueblips/Twitter_5.0_Patched with Blueblips, R1_signed.apk">5.0 (R1, Android 2x)</a>
<p class="center">Last updated 30/05/26 at 10:51 am</p>
<p class="center">&copy; 2026 Ahyan Zaman</p>
</body>

View file

@ -1,3 +1,7 @@
---
import './style.css';
---
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
@ -7,6 +11,11 @@
<link rel="favicon" href="/favicon.png"> <link rel="favicon" href="/favicon.png">
</head> </head>
<body> <body>
<p>Well what are you doing here? This is for assets. Head over to the main page <a href="https://azzyaz.net">here</a>.</p> <h1>Welcome to the Assets Page!</h1>
<a class="center" href="/downloads">Downloads</a>
<p>This is mostly assets for favicons and backgrounds etc, but theres also apks that I may have patched to api revivals like Blueblips or Valoria Snap</p>
<p>This index.astro page originally had a "Go back to the main site" but now this is a download page</p>
<p class="center">Downloads are above.</p>
<p class="center">&copy; 2026 Ahyan Zaman</p>
</body> </body>
</html> </html>

61
src/pages/style.css Normal file
View file

@ -0,0 +1,61 @@
@import url(https://fonts.bunny.net/css?family=caveat:600|inter:400,500,600,700|jetbrains-mono:400|newsreader:400,400i,500,500i,600,600i);
/* Light-black background and base text styles */
/* Make all pages centered both vertically and horizontally */
html, body {
height: 100%;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
background: #0f0f0f; /* very dark gray (light black) */
color: #e6e6e6; /* soft light text for contrast */
margin: 0;
min-height: 100vh;
font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
display: flex;
flex-direction: column; /* stack content vertically */
align-items: center; /* center container horizontally */
justify-content: center; /* center container vertically */
gap: 1rem;
text-align: left; /* left-align text inside the centered container */
padding: 2rem;
}
/* Constrain direct page content for readable lines on large screens */
main, .page, body > * {
width: 100%;
max-width: 80ch;
}
/* Remove default top/bottom margins and set heading alignment */
h1, h2, h3 {
margin-top: 0;
margin-bottom: 0;
text-align: center; /* center headings for this and future pages */
}
p {
margin-top: 0;
margin-bottom: 0;
text-align: left; /* keep paragraph/body text left-aligned */
}
/* Provide controlled spacing between blocks */
.page > * + * {
margin-top: 0.75rem;
}
/* Utility to center specific elements while keeping body text left-aligned */
.center {
text-align: center;
}