Skip to content

Commit

Permalink
chore: Update dependancies
Browse files Browse the repository at this point in the history
  • Loading branch information
No1ceTea authored Oct 7, 2024
1 parent cf6b33e commit a1c4b45
Show file tree
Hide file tree
Showing 7 changed files with 1,749 additions and 874 deletions.
2,607 changes: 1,741 additions & 866 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"reading-time": "^1.5.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.11.1",
"satori": "^0.11.2",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
},
Expand Down
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Site, SocialObjects } from "./types";

export const SITE: Site = {
title: "No1ceKeebs",
description: "Petit site autour des claviers customs.",
website: "https://no1cekeebs.live/", // replace this with your deployed domain
author: "No1ceTea",
desc: "Petit site autour des claviers customs.",
title: "No1ceKeebs",
lightAndDarkMode: true,
postPerPage: 6,
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface Props {
const {
title = SITE.title,
author = SITE.author,
description = SITE.desc,
description = SITE.description,
ogImage = SITE.ogImage,
canonicalURL = new URL(Astro.url.pathname, Astro.site).href,
pubDatetime,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/rss.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function GET() {
const sortedPosts = getSortedPosts(posts);
return rss({
title: SITE.title,
description: SITE.desc,
description: SITE.description,
site: SITE.website,
items: sortedPosts.map(({ data, slug }) => ({
link: `posts/${slug}/`,
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type socialIcons from "@assets/socialIcons";
export type Site = {
website: string;
author: string;
desc: string;
description: string;
title: string;
ogImage?: string;
lightAndDarkMode: boolean;
Expand Down
4 changes: 2 additions & 2 deletions src/utils/og-templates/site.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default () => {
}}
>
<p style={{ fontSize: 72, fontWeight: "bold" }}>{SITE.title}</p>
<p style={{ fontSize: 28 }}>{SITE.desc}</p>
<p style={{ fontSize: 28 }}>{SITE.description}</p>
</div>

<div
Expand All @@ -84,4 +84,4 @@ export default () => {
</div>
</div>
);
};
};

1 comment on commit a1c4b45

@vercel
Copy link

@vercel vercel bot commented on a1c4b45 Oct 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.