Skip to content

Commit 164a0f3

Browse files
committed
Fix merge conflicts
1 parent 964b5ad commit 164a0f3

File tree

6 files changed

+13
-56
lines changed

6 files changed

+13
-56
lines changed

astro.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* SOFTWARE.
2222
*/
2323

24+
import githubAlerts from 'remark-github-alerts';
2425
import { defineConfig } from 'astro/config';
2526
import tailwind from '@astrojs/tailwind';
2627
import sitemap from '@astrojs/sitemap';
@@ -34,7 +35,7 @@ export default defineConfig({
3435
output: 'server',
3536
site: 'https://floofy.dev',
3637
markdown: {
37-
remarkPlugins: [twemoji],
38+
remarkPlugins: [twemoji, githubAlerts],
3839
syntaxHighlight: 'shiki',
3940
shikiConfig: {
4041
theme: 'poimandres',

bun.lockb

628 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"astro-icon": "1.1.0",
3131
"autoprefixer": "10.4.20",
3232
"pino": "9.3.2",
33+
"remark-github-alerts": "0.0.4",
3334
"remark-twemoji": "0.1.1",
3435
"tailwindcss": "3.4.9",
3536
"twemoji": "14.0.2"

src/content/blog/bun.md

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/pages/index.astro

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ const projects: Props['data'][] = [
2222
}
2323
];
2424
25+
// if any mutuals I know want to be added, you can DM me on Discord (@auguwu)
26+
// or submit a PR if you wish :3
2527
const friends = [
2628
{
2729
friend: 'Spotlight',
@@ -32,8 +34,13 @@ const friends = [
3234
friend: 'Alula',
3335
img: 'https://alula.me/webring/alula.png',
3436
url: 'https://alula.me'
37+
},
38+
{
39+
friend: 'Ovyerus',
40+
img: 'https://ovyerus.com/webring/ovyerus.png',
41+
url: 'https://ovyerus.com'
3542
}
36-
];
43+
] as const;
3744
---
3845

3946
<html lang="en">
@@ -70,7 +77,7 @@ const friends = [
7077
{
7178
friends.map(({ friend, img, url }) => (
7279
<a href={url} target="_blank">
73-
<img alt={`${friend}'s 88x31'`} class="rounded-sm" src={img} />
80+
<img alt={`${friend}'s 88x31`} class="rounded-sm" src={img} />
7481
</a>
7582
))
7683
}

src/styles/global.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ article.markdown {
8989
@apply prose-a:text-rose-200 prose-a:underline hover:prose-a:text-fuchsia-400;
9090

9191
/* <blockquote> elements */
92-
@apply prose-blockquote:border-l-4 prose-blockquote:border-gray-600;
92+
@apply prose-blockquote:border-l-4 prose-blockquote:border-gray-600 prose-blockquote:not-italic;
9393

9494
/* <li> elements */
9595
@apply prose-li:leading-7 prose-li:text-zinc-200;

0 commit comments

Comments
 (0)