Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "notes blog",
"type": "module",
"version": "4.28.0",
"version": "4.29.0",
"repository": {
"type": "git",
"url": "https://github.com/antoniwan/notes.git"
Expand Down
12 changes: 12 additions & 0 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ import pkg from '../../package.json';
<a href="/brain-science/" class="link-muted block text-sm leading-relaxed md:text-base"
>🧠 Writing Insights</a
>
<a href="/library/books" class="link-muted block text-sm leading-relaxed md:text-base"
>📚 Book Library (for reference)</a
>
<a href="/tag-management" class="link-muted block text-sm leading-relaxed md:text-base"
>🏷️ Tag Analytics</a
>
Expand All @@ -84,6 +87,15 @@ import pkg from '../../package.json';
<span class="text-lg">🌀</span>
<span>BlueSky</span>
</a>
<a
href={SOCIAL_LINKS.threads}
target="_blank"
rel="noopener noreferrer"
class="link-muted flex items-center gap-2 text-sm leading-relaxed md:text-base"
>
<span class="text-lg">🧵</span>
<span>Threads</span>
</a>
<a
href={SOCIAL_LINKS.github}
target="_blank"
Expand Down
2 changes: 2 additions & 0 deletions src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface SocialLinks {
buildsSoftware: string;
strongHands: string;
twitter: string;
threads: string;
}

export interface SEOConfig {
Expand Down Expand Up @@ -59,6 +60,7 @@ export const SOCIAL_LINKS: SocialLinks = {
buildsSoftware: 'https://builds.software',
strongHands: 'https://stronghandssoftheart.com',
twitter: 'https://twitter.com/antoniwan',
threads: 'https://www.threads.com/@_antoniwan',
};

// SEO Configuration
Expand Down
Loading