Imported Pasquale Files and Updated index.astro

This commit is contained in:
Ahyan Z 2026-06-09 20:45:19 +01:00
parent 255fa552e5
commit 6992f86d56
25 changed files with 139 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 480 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 499 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 584 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 605 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 660 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 667 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

View file

@ -7,13 +7,16 @@ import './style.css';
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Azzy Assets</title>
<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>
<a class="center" href="/downloads">Downloads</a>
<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>

52
src/pages/pasquale.astro Normal file
View file

@ -0,0 +1,52 @@
---
import './style.css';
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Pasquale Files</title>
<link rel="favicon" href="/favicon.png">
</head>
<body>
<div class="page">
<header>
<h1>Pasquale Files.</h1>
</header>
<h3>Exhibit A: Twitter</h3>
<ul class="gallery">
<li><img src="/Pasquale files/Exhibit A - Twitter/A1.png" alt="A1"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A2.jpg" alt="A2"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A3.jpg" alt="A3"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A4.jpg" alt="A4"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A5.jpg" alt="A5"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A6.jpg" alt="A6"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A7.jpg" alt="A7"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A8.jpg" alt="A8"></li>
<li><img src="/Pasquale files/Exhibit A - Twitter/A9.jpg" alt="A9"></li>
</ul>
<h3>Exhibit B: Reddit</h3>
<ul class="gallery">
<li><img src="/Pasquale files/Exhbit B - Reddit/B1.png" alt="B1"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B2.jpg" alt="B2"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B3.jpg" alt="B3"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B4.jpg" alt="B4"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B5.jpg" alt="B5"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B6.jpg" alt="B6"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B7.jpg" alt="B7"></li>
<li><img src="/Pasquale files/Exhbit B - Reddit/B8.jpg" alt="B8"></li>
</ul>
<h3>Exhibit C: SpaceHey</h3>
<ul class="gallery">
<li><img src="/Pasquale files/Exhbit C- Spacehey/C1.jpg" alt="C1"></li>
<li><img src="/Pasquale files/Exhbit C- Spacehey/C2.jpg" alt="C2"></li>
<li><img src="/Pasquale files/Exhbit C- Spacehey/C3.jpg" alt="C3"></li>
<li><img src="/Pasquale files/Exhbit C- Spacehey/C4.jpg" alt="C4"></li>
</ul>
<p class="center"><a href="/Pasquale files/Reddit Pfp HTMLS.zip">Reddit Profile/Posts HTMLS</a></p>
<p class="center">Last updated 09/06/2026 at 20:35 pm</p>
<p class="center">&copy; 2026 Ahyan Zaman</p>
</div>
</body>
</html>

View file

@ -20,14 +20,20 @@ body {
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 */
justify-content: flex-start; /* align content to the top so headings/images are visible */
gap: 1rem;
text-align: left; /* left-align text inside the centered container */
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
text-align: center;
}
/* Constrain direct page content for readable lines on large screens */
@ -59,3 +65,66 @@ p {
text-align: center;
}
/* Row layout for navigation links (downloads, pasquale, etc.) */
.link-row {
display: flex;
gap: 1rem;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin: 0.5rem 0;
}
.link-row a {
color: #e6e6e6;
text-decoration: none;
padding: 0.35rem 0.6rem;
border-radius: 6px;
background: rgba(255,255,255,0.02);
transition: background 0.15s ease, transform 0.08s ease;
}
.link-row a:hover {
background: rgba(255,255,255,0.06);
transform: translateY(-1px);
}
/* Gallery list: remove bullets and make images smaller */
.gallery {
list-style: none;
padding: 0;
margin: 0.5rem 0;
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
justify-content: center;
}
.gallery li {
display: block;
}
.gallery img {
width: 140px; /* smaller images */
height: auto;
display: block;
}
/* Ensure the page content can scroll naturally and the heading stays visible */
.page {
padding-top: 0.75rem; /* small breathing room at the top */
max-height: calc(100vh - 2rem); /* keep page within viewport so it can scroll */
overflow-y: auto; /* enable scrolling when content exceeds available height */
-webkit-overflow-scrolling: touch;
padding-bottom: 2rem;
}
/* Make the header (h1 + h3) sticky so the headings remain visible while scrolling */
.page header {
position: sticky;
top: 0; /* stick to the top of the viewport when scrolling */
background: #0f0f0f; /* match page background so content behind doesn't show through */
margin: 0 0 0 0;
padding: 0.5rem 0;
z-index: 10;
}