diff --git a/public/Blueblips/Twitter_5.0_Patched with Blueblips, R1_signed.apk b/public/Blueblips/Twitter_5.0_Patched with Blueblips, R1_signed.apk new file mode 100644 index 0000000..854f82d Binary files /dev/null and b/public/Blueblips/Twitter_5.0_Patched with Blueblips, R1_signed.apk differ diff --git a/public/Blueblips/Twitter_5.45_Patched with Blueblips, R1_signed.apk b/public/Blueblips/Twitter_5.45_Patched with Blueblips, R1_signed.apk new file mode 100644 index 0000000..31282cf Binary files /dev/null and b/public/Blueblips/Twitter_5.45_Patched with Blueblips, R1_signed.apk differ diff --git a/src/pages/downloads.astro b/src/pages/downloads.astro new file mode 100644 index 0000000..036f3a5 --- /dev/null +++ b/src/pages/downloads.astro @@ -0,0 +1,23 @@ +--- +import './style.css'; +--- + + + + + + + Downloads + + + +

Downloads:

+

ValoriaSnap:

+ 4.1.07 (R1) + 4.1.07 (R2) +

Blueblips (Android):

+ 5.45 (R1) + 5.0 (R1, Android 2x) +

Last updated 30/05/26 at 10:51 am

+

© 2026 Ahyan Zaman

+ \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index 2928765..4f430f6 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,3 +1,7 @@ +--- +import './style.css'; +--- + @@ -7,6 +11,11 @@ -

Well what are you doing here? This is for assets. Head over to the main page here.

+

Welcome to the Assets Page!

+ Downloads +

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

+

This index.astro page originally had a "Go back to the main site" but now this is a download page

+

Downloads are above.

+

© 2026 Ahyan Zaman

- \ No newline at end of file + diff --git a/src/pages/style.css b/src/pages/style.css new file mode 100644 index 0000000..0023971 --- /dev/null +++ b/src/pages/style.css @@ -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; +} +