Compare commits
No commits in common. "main" and "v0.1.0" have entirely different histories.
18 changed files with 460 additions and 454 deletions
|
@ -26,11 +26,6 @@ jobs:
|
|||
node-version: 24
|
||||
cache: 'pnpm'
|
||||
|
||||
# - uses: https://github.com/denoland/setup-deno@v2
|
||||
# with:
|
||||
# deno-version: vx.x.x
|
||||
# cache: true
|
||||
|
||||
- name: Install SSH key
|
||||
uses: https://github.com/shimataro/ssh-key-action@v2
|
||||
with:
|
||||
|
@ -40,11 +35,9 @@ jobs:
|
|||
if_key_exists: fail
|
||||
|
||||
- run: pnpm install
|
||||
# - run: deno install
|
||||
|
||||
- name: Build website
|
||||
run: pnpm run build-action
|
||||
# run: deno run build-action
|
||||
|
||||
- name: Create folder if not exists
|
||||
continue-on-error: true
|
||||
|
|
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,13 +1,3 @@
|
|||
## v0.2.0 (2025-05-30)
|
||||
|
||||
### Feat
|
||||
|
||||
- **Aria-Board**: add 4 new imaged to the mood board of motoko kusanagi
|
||||
|
||||
### Refactor
|
||||
|
||||
- **old/**: remove old unused version of website
|
||||
|
||||
## v0.1.0 (2025-05-27)
|
||||
|
||||
### Feat
|
||||
|
|
25
old/index.html
Normal file
25
old/index.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="src/aria.css" />
|
||||
<title>Aria</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div style="align-self: end">
|
||||
<a href="https://aria.coffee"
|
||||
><img
|
||||
class="logo"
|
||||
src="img/buttons/aria.gif"
|
||||
style="width: 16em"
|
||||
/></a>
|
||||
<div style="align-self: start">
|
||||
<p>This is a test</p>
|
||||
<p>again</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
32
old/src/aria.css
Normal file
32
old/src/aria.css
Normal file
|
@ -0,0 +1,32 @@
|
|||
html {
|
||||
font-size: 100%;
|
||||
line-height: 1.5;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: #1f2d39;
|
||||
|
||||
max-width: 756px;
|
||||
|
||||
height: 500px;
|
||||
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
image-rendering: pixelated;
|
||||
border-radius: 24px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
image-rendering: pixelated;
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "astro",
|
||||
"type": "module",
|
||||
"version": "0.2.0",
|
||||
"version": "0.1.0",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"build": "astro check && astro build && ./compress-images.sh",
|
||||
|
@ -16,10 +16,10 @@
|
|||
"@astrojs/preact": "^4.1.0",
|
||||
"@astrojs/rss": "^4.0.11",
|
||||
"@astrojs/tailwind": "^5.1.5",
|
||||
"astro": "^5.8.1",
|
||||
"astro": "^5.8.0",
|
||||
"astro-icon": "^1.1.5",
|
||||
"dayjs": "^1.11.13",
|
||||
"preact": "^10.26.8",
|
||||
"preact": "^10.26.7",
|
||||
"sharp": "^0.33.5",
|
||||
"tailwindcss": "^3.4.17",
|
||||
"typescript": "^5.8.3"
|
||||
|
|
782
pnpm-lock.yaml
generated
782
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB |
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
|||
|
||||
const { name, image, target } = Astro.props;
|
||||
---
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||
<style>
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
|
|
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
|||
|
||||
const { name, image, target } = Astro.props;
|
||||
---
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||
<style>
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
|
|
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
|||
|
||||
const { name, image, target } = Astro.props;
|
||||
---
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||
<style>
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
import { Image, Picture } from "astro:assets";
|
||||
|
||||
const { name, image, target } = Astro.props;
|
||||
---
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||
<style>
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
min-width: 88px;
|
||||
width: 176px;
|
||||
min-height: 31px;
|
||||
height: 62px;
|
||||
padding: 4px;
|
||||
}
|
||||
</style>
|
|
@ -3,7 +3,7 @@ import { Image, Picture } from "astro:assets";
|
|||
|
||||
const { name, image, target } = Astro.props;
|
||||
---
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||
<style>
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
import { Image, Picture } from "astro:assets";
|
||||
|
||||
const { name, image, target } = Astro.props;
|
||||
---
|
||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||
<style>
|
||||
img {
|
||||
image-rendering: pixelated;
|
||||
min-width: 88px;
|
||||
width: 176px;
|
||||
min-height: 31px;
|
||||
height: 62px;
|
||||
padding: 4px;
|
||||
}
|
||||
</style>
|
Binary file not shown.
Before Width: | Height: | Size: 2 MiB |
Binary file not shown.
Before Width: | Height: | Size: 2 MiB |
Binary file not shown.
Before Width: | Height: | Size: 2.2 MiB |
Binary file not shown.
Before Width: | Height: | Size: 2.2 MiB |
|
@ -7,8 +7,6 @@ import BaseLayout from "../layouts/BaseLayout.astro";
|
|||
import FriendLink from "../components/FriendLinkHigh.astro";
|
||||
import FriendLinkMid from "../components/FriendLinkMid.astro";
|
||||
import FriendLinkLow from "../components/FriendLinkLow.astro";
|
||||
import FriendLinkLowAnimated from "../components/FriendLinkLowAnimated.astro";
|
||||
import FriendLinkMidAnimated from "../components/FriendLinkMidAnimated.astro";
|
||||
const pageTitle = "Aria";
|
||||
|
||||
const currentDate = new Date();
|
||||
|
@ -75,9 +73,9 @@ const age = seconds / 31556952;
|
|||
target="https://ata.moe"
|
||||
/>
|
||||
</div>
|
||||
<FriendLinkLow
|
||||
<FriendLink
|
||||
name="Amemoia"
|
||||
image="/static/img/88x31/BuhMoe.png"
|
||||
image="https://buh.moe/resources/buttons/88x31.gif"
|
||||
target="https://buh.moe/"
|
||||
/>
|
||||
<FriendLink
|
||||
|
@ -95,7 +93,7 @@ const age = seconds / 31556952;
|
|||
image="https://notnite.com/buttons/notnite.png"
|
||||
target="https://notnite.com/"
|
||||
/>
|
||||
<FriendLinkLowAnimated
|
||||
<FriendLinkLow
|
||||
name="0x5066"
|
||||
image="https://erisdump.neocities.org/buttons/88x31_2.gif"
|
||||
target="https://erisdump.neocities.org"
|
||||
|
@ -126,12 +124,12 @@ const age = seconds / 31556952;
|
|||
target="https://meow-d.github.io/"
|
||||
/>
|
||||
<div class="outline-dashed flex outline-3 mx-1">
|
||||
<FriendLinkMidAnimated
|
||||
<FriendLink
|
||||
name="~thermia"
|
||||
image="https://girlthi.ng/~thermia/img/88x31/thermia.gif"
|
||||
target="https://girlthi.ng/~thermia/"
|
||||
/>
|
||||
<FriendLinkMidAnimated
|
||||
<FriendLink
|
||||
name="girlthi.ng"
|
||||
image="https://girlthi.ng/~thermia/img/88x31/girlthing.gif"
|
||||
target="https://girlthi.ng/"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue