Extra additions to about page
BIN
public/static/img/88x31/EndeavourOS-88x31.webp
Normal file
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
BIN
public/static/img/88x31/brainmade.avif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/static/img/88x31/caddy.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
public/static/img/88x31/firefox.gif
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
public/static/img/88x31/handcoded.avif
Normal file
BIN
public/static/img/88x31/jellyfin.gif
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
public/static/img/88x31/kde.gif
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
public/static/img/88x31/qbittorrent.png
Normal file
After Width: | Height: | Size: 326 B |
BIN
public/static/img/88x31/vscbutton.gif
Normal file
After Width: | Height: | Size: 1.9 KiB |
|
@ -5,7 +5,7 @@ import BaseLayout from "../layouts/BaseLayout.astro";
|
||||||
import "../styles/aria.css";
|
import "../styles/aria.css";
|
||||||
|
|
||||||
const pageTitle = "About Aria";
|
const pageTitle = "About Aria";
|
||||||
const description = "All about Aria";
|
const description = "All about Aria, her system, her hobbies and more!";
|
||||||
|
|
||||||
const identity = {
|
const identity = {
|
||||||
firstName: "Aria",
|
firstName: "Aria",
|
||||||
|
@ -36,7 +36,7 @@ const skillColor = "#F5A8B7";
|
||||||
<Partition>
|
<Partition>
|
||||||
<p>It's about time I actually write up my own website right?</p>
|
<p>It's about time I actually write up my own website right?</p>
|
||||||
<br />
|
<br />
|
||||||
<p class="text-2xl">Here are a few facts about me:</p>
|
<h2 class="text-2xl">Here are a few facts about me:</h2>
|
||||||
<ul class="list-disc p-4">
|
<ul class="list-disc p-4">
|
||||||
<li>My name is {identity.firstName}.</li>
|
<li>My name is {identity.firstName}.</li>
|
||||||
<li>
|
<li>
|
||||||
|
@ -55,13 +55,80 @@ const skillColor = "#F5A8B7";
|
||||||
</ul>
|
</ul>
|
||||||
</Partition>
|
</Partition>
|
||||||
<Partition>
|
<Partition>
|
||||||
<p class="text-2xl">Some of my skilled areas are:</p>
|
<h2 class="text-2xl">What powers me & this website?</h2>
|
||||||
|
|
||||||
|
<p>What powers my system?</p>
|
||||||
|
<br />
|
||||||
|
<p>
|
||||||
|
I daily drive EndeavourOS with the KDE Plasma desktop, use Firefox
|
||||||
|
for the internet, qBittorrent for "linux ISOs", Jellyfin for
|
||||||
|
streaming those "ISOs"
|
||||||
|
</p>
|
||||||
|
<div class="flex outline-dotted p-2 flex-wrap">
|
||||||
|
<FriendLink
|
||||||
|
name="EndeavourOS"
|
||||||
|
image="/static/img/88x31/EndeavourOS-88x31.webp"
|
||||||
|
target="https://endeavouros.com/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="DKE Plasma"
|
||||||
|
image="/static/img/88x31/kde.gif"
|
||||||
|
target="https://kde.org/plasma-desktop/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="Firefox"
|
||||||
|
image="/static/img/88x31/firefox.gif"
|
||||||
|
target="https://www.mozilla.org/en-US/firefox/new/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="qBittorrent"
|
||||||
|
image="/static/img/88x31/qbittorrent.png"
|
||||||
|
target="https://www.qbittorrent.org/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="Jellyfin"
|
||||||
|
image="/static/img/88x31/jellyfin.gif"
|
||||||
|
target="https://jellyfin.org/"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<p>This website is powered written in VSCode, hosted with Caddy, created using Astro and with zero AI involvement!</p>
|
||||||
|
<div class="flex outline-dotted p-2 flex-wrap">
|
||||||
|
<FriendLink
|
||||||
|
name="Visual Studio Code"
|
||||||
|
image="/static/img/88x31/vscbutton.gif"
|
||||||
|
target="https://code.visualstudio.com/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="Caddy"
|
||||||
|
image="/static/img/88x31/caddy.png"
|
||||||
|
target="https://caddyserver.com/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="Astro"
|
||||||
|
image="/static/img/88x31/astro.png"
|
||||||
|
target="https://astro.build/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="Brain made"
|
||||||
|
image="/static/img/88x31/brainmade.avif"
|
||||||
|
target="https://brainmade.org/"
|
||||||
|
/>
|
||||||
|
<FriendLink
|
||||||
|
name="Hand coded"
|
||||||
|
image="/static/img/88x31/handcoded.avif"
|
||||||
|
target="https://brushwarriors.com/no-to-ai/"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</Partition>
|
||||||
|
<Partition>
|
||||||
|
<h2 class="text-2xl">Some of my skilled areas are:</h2>
|
||||||
<ul class="list-disc p-4">
|
<ul class="list-disc p-4">
|
||||||
{skills.map((skill) => <li class="skill">{skill}</li>)}
|
{skills.map((skill) => <li class="skill">{skill}</li>)}
|
||||||
</ul>
|
</ul>
|
||||||
</Partition>
|
</Partition>
|
||||||
<Partition>
|
<Partition>
|
||||||
<p class="text-2xl">My PC:</p>
|
<h2 class="text-2xl">My PC:</h2>
|
||||||
<ul class="list-disc p-4">
|
<ul class="list-disc p-4">
|
||||||
<li>
|
<li>
|
||||||
<span class="skill">Computer's Name:</span>
|
<span class="skill">Computer's Name:</span>
|
||||||
|
@ -99,16 +166,19 @@ const skillColor = "#F5A8B7";
|
||||||
><sub>[No link yet]</sub>
|
><sub>[No link yet]</sub>
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
<li><p>
|
<li>
|
||||||
|
<p>
|
||||||
Website inspiration: <FriendLink
|
Website inspiration: <FriendLink
|
||||||
name="Alyxia"
|
name="Alyxia"
|
||||||
image="https://alyxia.dev/static/img/88x31/self.png"
|
image="https://alyxia.dev/static/img/88x31/self.png"
|
||||||
target="https://alyxia.dev"
|
target="https://alyxia.dev"
|
||||||
/> & <div class="outline-dotted w-fit"><FriendLink
|
/> & <div class="outline-dotted w-fit">
|
||||||
name="Amemoia"
|
<FriendLink
|
||||||
image="https://buh.moe/resources/buttons/88x31.gif"
|
name="Amemoia"
|
||||||
target="https://buh.moe/"
|
image="https://buh.moe/resources/buttons/88x31.gif"
|
||||||
/><sub>[Alex]</sub></div>
|
target="https://buh.moe/"
|
||||||
|
/><sub>[Alex]</sub>
|
||||||
|
</div>
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|