This commit is contained in:
purifetchi 2025-01-06 20:29:36 +01:00
parent cb470842b7
commit 937b2a592b
21 changed files with 44 additions and 11 deletions

BIN
public/Ata.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

BIN
public/buttons/alyxia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B

BIN
public/buttons/amemoia.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
public/buttons/aria.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
public/buttons/ata.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
public/buttons/disarray.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 687 B

BIN
public/buttons/erisdump.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

BIN
public/buttons/kapunium.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
public/buttons/marsh.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
public/buttons/notnite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 830 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

BIN
public/buttons/uneven.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -3,6 +3,6 @@
---
<div class="text-center space-y-2 shadow-lg overflow-hidden border border-neutral-700/60 bg-neutral-900/40 p-8 rounded-xl">
<img class="rounded-b-full" src="https://nanoshinono.me/assets/img/ata_avatar.png" alt="Ata"/>
<img class="rounded-b-full w-[200px]" src="/Ata.png" alt="Ata"/>
<h1 class="font-bold text-3xl">prefetcher</h1>
</div>

View file

@ -4,7 +4,9 @@
<div class="space-y-2 shadow-lg overflow-hidden border border-neutral-700/60 bg-neutral-900/40 p-4 rounded-xl w-44">
<ul>
<li>main</li>
<li><a href="/">home</a></li>
<li>projects</li>
<li><a href="/links">links</a></li>
</ul>
</div>

View file

@ -2,6 +2,6 @@
---
<div class="space-y-2 shadow-lg overflow-hidden border border-neutral-700/60 bg-neutral-900/40 p-8 rounded-xl flex-grow max-w-[700px] w-max">
<div class="space-y-2 shadow-lg overflow-hidden border border-neutral-700/60 bg-neutral-900/40 p-8 rounded-xl flex-grow max-w-[700px] w-screen">
<slot />
</div>

View file

@ -0,0 +1,8 @@
---
const { image, link } = Astro.props;
const actualImage = `/buttons/${image}`;
---
<a href={link} target="_blank" class="inline-block">
<img src={actualImage} />
</a>

View file

@ -17,11 +17,8 @@ import Menu from "../components/Menu.astro";
<meta name="generator" content={Astro.generator} />
<title>Astro Basics</title>
</head>
<body class="text-neutral-200 flex items-center justify-center">
<div class="fixed w-screen h-screen top-0 left-0 backdrop-blur-2xl">
</div>
<div id="container" class="w-max h-max flex flex-row space-x-3 z-10">
<body class="bg-neutral-800 text-neutral-200 flex items-center justify-center">
<div id="container" class="flex flex-row space-x-3 z-10">
<div class="flex flex-col space-y-3">
<InfoCard />
<Socials />
@ -45,8 +42,5 @@ import Menu from "../components/Menu.astro";
margin: 0;
width: 100%;
height: 100%;
background: url("test.gif");
background-size: cover;
background-position: center;
}
</style>

29
src/pages/links.astro Normal file
View file

@ -0,0 +1,29 @@
---
import Layout from "../layouts/Layout.astro";
import WebsiteButton from "../components/WebsiteButton.astro";
---
<Layout>
<h1 class="font-bold text-3xl">88x31 land</h1>
<div>
<WebsiteButton link="https://alyxia.dev" image="alyxia.png" />
<WebsiteButton link="https://marsh.zone" image="marsh.png" />
<WebsiteButton link="https://wamwoowam.co.uk" image="wamwoowam.gif" />
<WebsiteButton link="https://erisdump.neocities.org" image="erisdump.gif" />
<WebsiteButton link="https://buh.moe" image="amemoia.gif" />
<WebsiteButton link="https://github.com/kurtbahartr" image="kurtbahartr.png" />
<WebsiteButton link="https://notnite.com" image="notnite.png" />
<WebsiteButton link="https://palaiologos.rocks" image="palaiologos.png" />
<WebsiteButton link="https://ata.moe" image="ata.png" />
<WebsiteButton link="https://aria.coffee" image="aria.gif" />
<WebsiteButton link="https://kapunium.neocities.org" image="kapunium.gif" />
<WebsiteButton link="https://unevenprankster.neocities.org" image="uneven.png" />
<WebsiteButton link="https://disarray.sh" image="disarray.png" />
<WebsiteButton link="https://pixelde.su" image="pixeldesu.png" />
</div>
<p>
add mine to your site!
</p>
</Layout>