Compare commits
No commits in common. "main" and "v1.0.1" have entirely different histories.
20 changed files with 1101 additions and 1265 deletions
|
@ -4,7 +4,6 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,16 +1,3 @@
|
||||||
## v1.1.0 (2025-07-04)
|
|
||||||
|
|
||||||
### Feat
|
|
||||||
|
|
||||||
- add matomo & bump versions
|
|
||||||
- **pay-me**: add nano address
|
|
||||||
- **blog**: make draft bool optional
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- **astro config**: remove eris from image download
|
|
||||||
- **index**: remove "SSH" from minisign key text
|
|
||||||
|
|
||||||
## v1.0.1 (2025-06-09)
|
## v1.0.1 (2025-06-09)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
// @ts-check
|
// @ts-check
|
||||||
import { defineConfig } from "astro/config";
|
import { defineConfig } from "astro/config";
|
||||||
import matomo from 'astro-matomo';
|
|
||||||
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 tailwindcss from "@tailwindcss/vite";
|
import tailwind from "@astrojs/tailwind";
|
||||||
import tailwind from "@tailwindcss/vite";
|
import node from "@astrojs/node";
|
||||||
// import node from "@astrojs/node";
|
|
||||||
|
|
||||||
import icon from "astro-icon";
|
import icon from "astro-icon";
|
||||||
|
|
||||||
|
@ -16,27 +14,7 @@ import mdx from "@astrojs/mdx";
|
||||||
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: [
|
integrations: [preact(), tailwind(), icon(), mdx()],
|
||||||
preact(),
|
|
||||||
// tailwind(),
|
|
||||||
icon(),
|
|
||||||
mdx(),
|
|
||||||
matomo({
|
|
||||||
enabled: import.meta.env.PROD, // Only load in production
|
|
||||||
host: "https://analytics.aria.coffee/",
|
|
||||||
// setCookieDomain: "*.ara.coffee",
|
|
||||||
// trackerUrl: "js/", // defaults to matomo.php
|
|
||||||
// srcUrl: "js/", // defaults to matomo.js
|
|
||||||
siteId: 1,
|
|
||||||
heartBeatTimer: 5,
|
|
||||||
// disableCookies: true,
|
|
||||||
debug: false,
|
|
||||||
// viewTransition: {
|
|
||||||
// contentElement: "main"
|
|
||||||
// }
|
|
||||||
}),
|
|
||||||
|
|
||||||
],
|
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
domains: [
|
domains: [
|
||||||
|
@ -55,7 +33,7 @@ export default defineConfig({
|
||||||
"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",
|
||||||
|
@ -67,14 +45,9 @@ export default defineConfig({
|
||||||
"ari.express"
|
"ari.express"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
markdown: {
|
markdown: {
|
||||||
remarkPlugins: [remarkModifiedTime],
|
remarkPlugins: [remarkModifiedTime],
|
||||||
},
|
},
|
||||||
|
|
||||||
vite: {
|
|
||||||
plugins: [tailwindcss()],
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Bellow is for when dedicated server is wanted?
|
// Bellow is for when dedicated server is wanted?
|
||||||
|
|
20
package.json
20
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "aria.coffee",
|
"name": "astro",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.1.0",
|
"version": "1.0.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"build": "astro check && astro build && ./compress-images.sh",
|
"build": "astro check && astro build && ./compress-images.sh",
|
||||||
|
@ -12,18 +12,16 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/check": "^0.9.4",
|
"@astrojs/check": "^0.9.4",
|
||||||
"@astrojs/mdx": "^4.3.0",
|
"@astrojs/mdx": "^4.3.0",
|
||||||
"@astrojs/node": "^9.3.0",
|
"@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",
|
||||||
"@tailwindcss/vite": "^4.1.11",
|
"@astrojs/tailwind": "^5.1.5",
|
||||||
"aria.coffee": "link:",
|
"astro": "^5.9.1",
|
||||||
"astro": "^5.11.0",
|
|
||||||
"astro-icon": "^1.1.5",
|
"astro-icon": "^1.1.5",
|
||||||
"astro-matomo": "^1.9.0",
|
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"preact": "^10.26.9",
|
"preact": "^10.26.8",
|
||||||
"sharp": "^0.34.2",
|
"sharp": "^0.33.5",
|
||||||
"tailwindcss": "^4.1.11",
|
"tailwindcss": "^3.4.17",
|
||||||
"typescript": "^5.8.3"
|
"typescript": "^5.8.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -32,7 +30,7 @@
|
||||||
"@iconify-json/mdi": "^1.2.3",
|
"@iconify-json/mdi": "^1.2.3",
|
||||||
"@iconify-json/meteor-icons": "^1.2.1",
|
"@iconify-json/meteor-icons": "^1.2.1",
|
||||||
"@iconify-json/tabler": "^1.2.19",
|
"@iconify-json/tabler": "^1.2.19",
|
||||||
"@iconify-json/token": "^1.2.18",
|
"@iconify-json/token": "^1.2.17",
|
||||||
"@tailwindcss/typography": "^0.5.16",
|
"@tailwindcss/typography": "^0.5.16",
|
||||||
"vite": "^6.3.5"
|
"vite": "^6.3.5"
|
||||||
}
|
}
|
||||||
|
|
2131
pnpm-lock.yaml
generated
2131
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,4 +1,3 @@
|
||||||
onlyBuiltDependencies:
|
onlyBuiltDependencies:
|
||||||
- '@tailwindcss/oxide'
|
|
||||||
- esbuild
|
- esbuild
|
||||||
- sharp
|
- sharp
|
||||||
|
|
Binary file not shown.
|
@ -1,15 +0,0 @@
|
||||||
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
|
|
|
@ -1,4 +0,0 @@
|
||||||
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,19 +85,5 @@ 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>
|
||||||
|
|
|
@ -3,16 +3,14 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} sizes={"0.5x 1x 2x 4x"} 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={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 176px;
|
min-width: 88px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
max-width: 176px;
|
min-height: 31px;
|
||||||
min-height: 62px;
|
|
||||||
height: 62px;
|
height: 62px;
|
||||||
max-height: 62px;
|
padding: 4px;
|
||||||
scale: 1;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,16 +3,14 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 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={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 176px;
|
min-width: 88px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
max-width: 176px;
|
min-height: 31px;
|
||||||
min-height: 62px;
|
|
||||||
height: 62px;
|
height: 62px;
|
||||||
max-height: 62px;
|
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,16 +3,14 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 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={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 176px;
|
min-width: 88px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
max-width: 176px;
|
min-height: 31px;
|
||||||
min-height: 62px;
|
|
||||||
height: 62px;
|
height: 62px;
|
||||||
max-height: 62px;
|
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,16 +3,14 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['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>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 176px;
|
min-width: 88px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
max-width: 176px;
|
min-height: 31px;
|
||||||
min-height: 62px;
|
|
||||||
height: 62px;
|
height: 62px;
|
||||||
max-height: 62px;
|
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,16 +3,14 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 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={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 176px;
|
min-width: 88px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
max-width: 176px;
|
min-height: 31px;
|
||||||
min-height: 62px;
|
|
||||||
height: 62px;
|
height: 62px;
|
||||||
max-height: 62px;
|
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,16 +3,14 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['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>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 176px;
|
min-width: 88px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
max-width: 176px;
|
min-height: 31px;
|
||||||
min-height: 62px;
|
|
||||||
height: 62px;
|
height: 62px;
|
||||||
max-height: 62px;
|
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -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().optional().default(false),
|
draft: z.boolean(),
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ const { pageTitle, description = "Aria's little corner of the web" } = Astro.pro
|
||||||
href={new URL("rss.xml", Astro.site)}
|
href={new URL("rss.xml", Astro.site)}
|
||||||
/>
|
/>
|
||||||
</head>
|
</head>
|
||||||
<body class="max-w-5xl w-full mx-auto">
|
<body>
|
||||||
<NavHeader />
|
<NavHeader />
|
||||||
<slot />
|
<slot />
|
||||||
<Footer />
|
<Footer />
|
||||||
|
|
|
@ -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>minisign key: <a href="/static/keys/aria-minisign.pub" download="aria-minisign.pub"><code>aria-minisign.pub</code></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>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>
|
||||||
|
@ -103,11 +103,11 @@ const age = seconds / 31556952;
|
||||||
image="https://erisdump.neocities.org/buttons/88x31_2.gif"
|
image="https://erisdump.neocities.org/buttons/88x31_2.gif"
|
||||||
target="https://erisdump.neocities.org"
|
target="https://erisdump.neocities.org"
|
||||||
/>
|
/>
|
||||||
<!-- <FriendLink
|
<FriendLink
|
||||||
name="Espi"
|
name="Espi"
|
||||||
image="https://espi.me/img/webring/espi.png"
|
image="https://espi.me/img/webring/espi.png"
|
||||||
target="https://www.espi.me"
|
target="https://www.espi.me"
|
||||||
/> -->
|
/>
|
||||||
<FriendLink
|
<FriendLink
|
||||||
name="Alula"
|
name="Alula"
|
||||||
image="https://alula.me/webring/alula.png"
|
image="https://alula.me/webring/alula.png"
|
||||||
|
@ -115,7 +115,7 @@ const age = seconds / 31556952;
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<FriendLink
|
||||||
name="Sapphic"
|
name="Sapphic"
|
||||||
image="https://sapphic.moe/buttons/sapphic.png"
|
image="https://sapphic.moe/buttons/friends/sapphic.png"
|
||||||
target="https://sapphic.moe/"
|
target="https://sapphic.moe/"
|
||||||
/>
|
/>
|
||||||
<FriendLink
|
<FriendLink
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
@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