mirror of
https://git.aria.coffee/aria/aria.coffee.git
synced 2025-06-25 04:06:59 -04:00
Compare commits
7 commits
Author | SHA1 | Date | |
---|---|---|---|
82102d3625 | |||
2093606d41 | |||
bba72641c2 | |||
069577600e | |||
1a23cddd83 | |||
d3cb6e5574 | |||
38c096d1a2 |
11 changed files with 702 additions and 597 deletions
|
@ -3,8 +3,9 @@ import { defineConfig } from "astro/config";
|
||||||
import { remarkModifiedTime } from "./remark-modified-time.mjs";
|
import { remarkModifiedTime } from "./remark-modified-time.mjs";
|
||||||
|
|
||||||
import preact from "@astrojs/preact";
|
import preact from "@astrojs/preact";
|
||||||
import tailwind from "@astrojs/tailwind";
|
import tailwindcss from "@tailwindcss/vite";
|
||||||
import node from "@astrojs/node";
|
import tailwind from "@tailwindcss/vite";
|
||||||
|
// import node from "@astrojs/node";
|
||||||
|
|
||||||
import icon from "astro-icon";
|
import icon from "astro-icon";
|
||||||
|
|
||||||
|
@ -12,42 +13,47 @@ import mdx from "@astrojs/mdx";
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
output: process.env.DOCKER_BUILD ? "server" : "static",
|
output: process.env.DOCKER_BUILD ? "server" : "static",
|
||||||
site: "https://aria.coffee",
|
site: "https://aria.coffee",
|
||||||
integrations: [preact(), tailwind(), icon(), mdx()],
|
integrations: [preact(), tailwind(), icon(), mdx()],
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
domains: [
|
domains: [
|
||||||
"buymymojo.net",
|
"buymymojo.net",
|
||||||
"aria.coffee",
|
"aria.coffee",
|
||||||
"github.com",
|
"github.com",
|
||||||
"githubusercontent.com",
|
"githubusercontent.com",
|
||||||
"avatars.githubusercontent.com",
|
"avatars.githubusercontent.com",
|
||||||
"camo.githubusercontent.com",
|
"camo.githubusercontent.com",
|
||||||
"user-images.githubusercontent.com",
|
"user-images.githubusercontent.com",
|
||||||
"private-user-images.githubusercontent.com",
|
"private-user-images.githubusercontent.com",
|
||||||
"alyxia.dev",
|
"alyxia.dev",
|
||||||
"nanoshinono.me",
|
"nanoshinono.me",
|
||||||
"ata.moe",
|
"ata.moe",
|
||||||
"buh.moe",
|
"buh.moe",
|
||||||
"hayden.moe",
|
"hayden.moe",
|
||||||
"onz.ee",
|
"onz.ee",
|
||||||
"notnite.com",
|
"notnite.com",
|
||||||
"erisdump.neocities.org",
|
// "erisdump.neocities.org",
|
||||||
"espi.me",
|
"espi.me",
|
||||||
"alula.me",
|
"alula.me",
|
||||||
"sapphic.moe",
|
"sapphic.moe",
|
||||||
"calayucu.com",
|
"calayucu.com",
|
||||||
"meow-d.github.io",
|
"meow-d.github.io",
|
||||||
"girlthi.ng",
|
"girlthi.ng",
|
||||||
"lenooby09.tech",
|
"lenooby09.tech",
|
||||||
"ackwell.au",
|
"ackwell.au",
|
||||||
"ari.express"
|
"ari.express"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
markdown: {
|
|
||||||
remarkPlugins: [remarkModifiedTime],
|
markdown: {
|
||||||
},
|
remarkPlugins: [remarkModifiedTime],
|
||||||
|
},
|
||||||
|
|
||||||
|
vite: {
|
||||||
|
plugins: [tailwindcss()],
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
// Bellow is for when dedicated server is wanted?
|
// Bellow is for when dedicated server is wanted?
|
||||||
|
|
10
package.json
10
package.json
|
@ -15,13 +15,13 @@
|
||||||
"@astrojs/node": "^9.2.2",
|
"@astrojs/node": "^9.2.2",
|
||||||
"@astrojs/preact": "^4.1.0",
|
"@astrojs/preact": "^4.1.0",
|
||||||
"@astrojs/rss": "^4.0.12",
|
"@astrojs/rss": "^4.0.12",
|
||||||
"@astrojs/tailwind": "^5.1.5",
|
"@tailwindcss/vite": "^4.1.10",
|
||||||
"astro": "^5.9.1",
|
"astro": "^5.9.3",
|
||||||
"astro-icon": "^1.1.5",
|
"astro-icon": "^1.1.5",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"preact": "^10.26.8",
|
"preact": "^10.26.9",
|
||||||
"sharp": "^0.33.5",
|
"sharp": "^0.34.2",
|
||||||
"tailwindcss": "^3.4.17",
|
"tailwindcss": "^4.1.10",
|
||||||
"typescript": "^5.8.3"
|
"typescript": "^5.8.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
1167
pnpm-lock.yaml
generated
1167
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,3 +1,4 @@
|
||||||
onlyBuiltDependencies:
|
onlyBuiltDependencies:
|
||||||
|
- '@tailwindcss/oxide'
|
||||||
- esbuild
|
- esbuild
|
||||||
- sharp
|
- sharp
|
||||||
|
|
BIN
public/static/messages/nano-note.tar.zst
Normal file
BIN
public/static/messages/nano-note.tar.zst
Normal file
Binary file not shown.
15
public/static/messages/nano-note.txt
Normal file
15
public/static/messages/nano-note.txt
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
I have added a new wallet address to my website!
|
||||||
|
|
||||||
|
Nano: nano_1o6wsddxjbkhrt38m6n87b8szg4jdkkuty7r3t553sqgj5ue7kbqqrioaap9
|
||||||
|
|
||||||
|
I am leaving this note here and signing it as proof of identity.
|
||||||
|
|
||||||
|
all my current wallets are as follows:
|
||||||
|
|
||||||
|
XMR: 48NZQ5rYpiNEjNtsWKbyniVY3FpJ9kLVA815cxfSMPF5gvjrBiHH9x5JLr3aBYhvKvENCdhrYgzQ9LhBnR5NoinWDCGBzNm
|
||||||
|
BTC: bc1qeqz2fswpn4hjjy373gyvjgkq63hv7mknwd6cau
|
||||||
|
LTC: LW4tGWNzYQ21eJ8G2LZaLqroYU67nSNwnY
|
||||||
|
ETH: 0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58
|
||||||
|
USDC(ETH): 0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58
|
||||||
|
USDT(ETH): 0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58
|
||||||
|
NANO: nano_1o6wsddxjbkhrt38m6n87b8szg4jdkkuty7r3t553sqgj5ue7kbqqrioaap9
|
4
public/static/messages/nano-note.txt.minisig
Normal file
4
public/static/messages/nano-note.txt.minisig
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
untrusted comment: signature from minisign secret key
|
||||||
|
RUQLW3LQVJ3g5iLSdWYVagu6OID+UN0fgm4hDgaKm5mych2VPCes1mx6WI9My1/A0YFjsufskQVJtAaqDHXgIcQ1U7orzxJXCQI=
|
||||||
|
trusted comment: timestamp:1750138827 file:nano-note.txt hashed
|
||||||
|
IdrZ+thtF+EJ4a12lRmrDIFyyTHx2pVLxA9nbTEsG/P3VlWv7tp94GkrZ0l+x72CaG8F1FKBu/aS0BKK8LHwDA==
|
|
@ -85,5 +85,19 @@ import { Icon } from "astro-icon/components";
|
||||||
>0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58</textarea
|
>0xDd947270bCE2bBB3a3E3eCc4eA5095c14aa9ec58</textarea
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<Icon name="token:xno" class={"svg-inline"} /> NANO: <textarea
|
||||||
|
onclick="this.select()"
|
||||||
|
readonly
|
||||||
|
cols="65"
|
||||||
|
rows="1"
|
||||||
|
class="rounded backdrop-brightness-0"
|
||||||
|
style="background-color: var(--third-colour); resize: none;"
|
||||||
|
>nano_1o6wsddxjbkhrt38m6n87b8szg4jdkkuty7r3t553sqgj5ue7kbqqrioaap9</textarea
|
||||||
|
>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<br />
|
||||||
|
<sub>note about addition of nano: <a href="/static/messages/nano-note.txt" download="nano-note.txt">nano-note.txt</a></sub><br />
|
||||||
|
<sub>signature of note about addition of nano: <a href="/static/messages/nano-note.txt.minisig" download="nano-note.txt.minisig">nano-note.txt.minisig</a></sub>
|
||||||
</Partition>
|
</Partition>
|
||||||
|
|
|
@ -13,7 +13,7 @@ const blog = defineCollection({
|
||||||
description: z.string(),
|
description: z.string(),
|
||||||
author: z.string(),
|
author: z.string(),
|
||||||
tags: z.array(z.string()),
|
tags: z.array(z.string()),
|
||||||
draft: z.boolean(),
|
draft: z.boolean().optional().default(false),
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ const age = seconds / 31556952;
|
||||||
<li>PGP public key fingerprint: <code>7EBD 3E0C 7D3D 5C7D 5CA8 A03F 4977 6EAC 872B 884B</code></li>
|
<li>PGP public key fingerprint: <code>7EBD 3E0C 7D3D 5C7D 5CA8 A03F 4977 6EAC 872B 884B</code></li>
|
||||||
<li>PGP public key: <a href="/static/keys/49776EAC872B884B_public.asc" download="49776EAC872B884B_public.asc"><code>49776EAC872B884B_public.asc</code></a> <sub><a href="https://archive.org/details/49776EAC872B884B_public.asc" target="_blank">archive link</a></sub></li>
|
<li>PGP public key: <a href="/static/keys/49776EAC872B884B_public.asc" download="49776EAC872B884B_public.asc"><code>49776EAC872B884B_public.asc</code></a> <sub><a href="https://archive.org/details/49776EAC872B884B_public.asc" target="_blank">archive link</a></sub></li>
|
||||||
<li>SSH public key: <a href="https://git.aria.coffee/aria.keys" target="_blank">on my personal git serrver</a> or <a href="https://git.witchcraft.systems/aria.keys" target="_blank">on witchcraft systems' git server</a></li>
|
<li>SSH public key: <a href="https://git.aria.coffee/aria.keys" target="_blank">on my personal git serrver</a> or <a href="https://git.witchcraft.systems/aria.keys" target="_blank">on witchcraft systems' git server</a></li>
|
||||||
<li>SSH minisign key: <a href="/static/keys/aria-minisign.pub" download="aria-minisign.pub"><code>aria-minisign.pub</code></a></li>
|
<li>minisign key: <a href="/static/keys/aria-minisign.pub" download="aria-minisign.pub"><code>aria-minisign.pub</code></a></li>
|
||||||
<li>Email: <a href="mailto:hello@aria.coffee"><code>hello@aria.coffee</code></a> (supports <a href="https://delta.chat/en/" target="_blank">deltachat</a>!)</li>
|
<li>Email: <a href="mailto:hello@aria.coffee"><code>hello@aria.coffee</code></a> (supports <a href="https://delta.chat/en/" target="_blank">deltachat</a>!)</li>
|
||||||
<li>Keyoxide: use my <a href="https://keyoxide.org/hello@aria.coffee" target="_blank">email</a> or my <a href="https://keyoxide.org/7EBD3E0C7D3D5C7D5CA8A03F49776EAC872B884B" target="_blank">PGP key fingerprint</a></li>
|
<li>Keyoxide: use my <a href="https://keyoxide.org/hello@aria.coffee" target="_blank">email</a> or my <a href="https://keyoxide.org/7EBD3E0C7D3D5C7D5CA8A03F49776EAC872B884B" target="_blank">PGP key fingerprint</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import "tailwindcss";
|
||||||
|
|
||||||
/* @font-face {
|
/* @font-face {
|
||||||
font-family: "Noto Sans";
|
font-family: "Noto Sans";
|
||||||
src: local("Noto Sans"), url("/static/fonts/NotoSansDisplay-Regular.ttf")
|
src: local("Noto Sans"), url("/static/fonts/NotoSansDisplay-Regular.ttf")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue