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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["AI & Automation","Career & Professional Development"],
tags: ["ai-humanity","career-transition","societal-optimism","existential-ai","creative-value"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 9,
};

Expand Down
2 changes: 1 addition & 1 deletion app/blog/posts/ai-neuroticism-tidal-forces-singularity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const metadata: PostMeta = {
"ai-singularity",
],
category: "AI & Automation",
isFeatured: false,
isFeatured: true,
isDraft: false,
priority: 5,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["AI & Automation","Development & Tools"],
tags: ["generative-ai","coding-agents","ai-autonomy","human-ai-collaboration","software-frameworks"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 9,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const metadata: PostMeta = {
tags: ["web-presence","professional-branding","SEO","freelancing","digital-marketing","content-strategy","networking","personal-brand","career-development","online-validation"],
series: "Professional Development",
category: "Career",
isFeatured: true,
isFeatured: false,
priority: 8,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["AI & Automation","Development & Tools"],
tags: ["AI-chatbot","generative-search","web-optimization","RAG-implementation","SEO-strategy"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 9,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["Career & Professional Development","AI & Automation","Entrepreneurship"],
tags: ["pitch-reflections","death-care-ar","prototyping","investor-strategy","revenant-hollow"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 9,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["AI & Automation","Development & Tools","Marketing & Business"],
tags: ["AI-creativity","music-AI","human-AI-collaboration","RLHF-in-recommendations","session-musician"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 9,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["Career & Professional Development","Development & Tools"],
tags: ["enterprise-devops","mentorship","identity-access-management","startup-enterprise","personal-reflection"],
category: "Career",
isFeatured: true,
isFeatured: false,
priority: 8,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const metadata: PostMeta = {
"cross-platform-tracking"
],
category: "AI & Automation",
isFeatured: false,
isFeatured: true,
isDraft: false,
priority: 5,
};
Expand Down
227 changes: 227 additions & 0 deletions app/blog/posts/revenant-hollow-never-stopped-being-alive.tsx

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["Development & Tools","Career & Professional Development"],
tags: ["infrastructure-as-code","generative-ai","enterprise-startup","devops","code-refactoring"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 8,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const metadata: PostMeta = {
tags: ["AI","blog-bot","content-creation","automation","digital-legacy","creativity","AI-agents","content-strategy","personal-branding","technology","innovation"],
series: "AI & Automation",
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 6,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: PostMeta = {
topics: ["AI & Automation","Development & Tools"],
tags: ["flat-files","ai-blogging","generative-seo","coding-ide-repurpose","content-framework"],
category: "Technology",
isFeatured: true,
isFeatured: false,
priority: 8,
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const metadata: PostMeta = {
tags: ["career-transition","cable-contracting","freelance","web-development","misclassification","charter-communications","upwork","wordpress","PHP","MySQL","self-learning","global-market","career-pivot","manual-labor","programming"],
series: "Career Journey",
category: "Career",
isFeatured: true,
isFeatured: false,
priority: 1,
};

Expand Down
58 changes: 58 additions & 0 deletions components/PostCard.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import Link from 'next/link';
import Image from 'next/image';
import postIndex from '@/lib/post-index.json';

interface IndexedPost {
slug: string;
title: string;
description: string;
headerImage?: string;
publishedDate?: string;
}

interface PostCardProps {
slug: string;
}

export default function PostCard({ slug }: PostCardProps) {
const posts = (postIndex as { posts: IndexedPost[] }).posts;
const post = posts.find((p) => p.slug === slug);

if (!post) {
return (
<div className="my-6 p-4 border border-red-500 rounded text-red-500 text-sm">
Missing post in index: <code>{slug}</code>
</div>
);
}

return (
<Link
href={`/blog/${post.slug}`}
className="not-prose flex gap-4 my-6 p-4 border border-[#00ff00]/30 rounded-lg hover:border-[#00ff00] hover:bg-[#00ff00]/5 transition-colors no-underline group"
>
{post.headerImage && (
<div className="relative flex-shrink-0 w-32 h-20 sm:w-40 sm:h-24 rounded overflow-hidden bg-black">
<Image
src={post.headerImage}
alt=""
fill
className="object-cover"
sizes="(max-width: 640px) 128px, 160px"
/>
</div>
)}
<div className="flex-1 min-w-0">
<div className="text-xs text-[#00ff00]/70 mb-1 uppercase tracking-wide">
cyberworldbuilders.com / blog
</div>
<div className="font-bold text-white group-hover:text-[#00ff00] line-clamp-2 transition-colors">
{post.title}
</div>
<div className="text-sm text-gray-400 line-clamp-2 mt-1">
{post.description}
</div>
</div>
</Link>
);
}
Loading
Loading