3 Commits

Author SHA1 Message Date
naomi 2de1f4e36e fix: dedupe read time
Code Analysis / SonarQube (push) Failing after 16s
Node.js CI / Lint and Test (push) Successful in 1m33s
2025-10-29 14:49:11 -07:00
naomi 297948fb46 release: v1.0.0
Code Analysis / SonarQube (push) Failing after 25s
Node.js CI / Lint and Test (push) Successful in 1m34s
2025-10-29 14:46:26 -07:00
naomi 0dd715f9a1 fix: new font 2025-10-29 14:44:51 -07:00
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "announcements", "name": "blog",
"version": "0.1.0", "version": "1.0.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 3003", "dev": "next dev -p 3003",
+1 -1
View File
@@ -3,7 +3,7 @@
@tailwind utilities; @tailwind utilities;
* { * {
font-family: "OpenDyslexic", monospace; font-family: "Vampyr", monospace;
} }
h1 { h1 {
+1 -1
View File
@@ -24,7 +24,7 @@ const Home = (): JSX.Element => {
<h2><a className="underline" href={`/post/${post.slug}`}>{post.data.title}</a></h2> <h2><a className="underline" href={`/post/${post.slug}`}>{post.data.title}</a></h2>
<p className="italic text-center">{post.data.date.toLocaleDateString("en-GB", { day: "numeric", month: "long", year: "numeric" })}</p> <p className="italic text-center">{post.data.date.toLocaleDateString("en-GB", { day: "numeric", month: "long", year: "numeric" })}</p>
<p className="text-center">{post.data.summary}</p> <p className="text-center">{post.data.summary}</p>
<p className="text-center">{`A ${post.data.readtime} read.`}</p> <p className="text-center">{`A ${post.data.readtime}.`}</p>
</div>; </div>;
})} })}
</main> </main>
+1 -1
View File
@@ -32,7 +32,7 @@ const Page = async({
{ day: "numeric", month: "long", weekday: "long", year: "numeric" }, { day: "numeric", month: "long", weekday: "long", year: "numeric" },
)}`}</p> )}`}</p>
<h2 className="text-center">{post.data.summary}</h2> <h2 className="text-center">{post.data.summary}</h2>
<p className="text-center">{`A ${post.data.readtime} read.`}</p> <p className="text-center">{`A ${post.data.readtime}.`}</p>
<Rule /> <Rule />
<Markdown rehypePlugins={[ rehypeRaw ]} remarkPlugins={[ remarkGfm ]}> <Markdown rehypePlugins={[ rehypeRaw ]} remarkPlugins={[ remarkGfm ]}>
{post.content} {post.content}