...
This commit is contained in:
parent
6db344c62f
commit
fca039aa2d
@ -5,6 +5,7 @@ date: "December 8, 2024"
|
||||
readTime: "7 min read"
|
||||
tags: ["AI", "Personal Agents", "Technology"]
|
||||
image: "/src/assets/heart.jpg"
|
||||
description: "Unlike corporate AI that serves shareholders, Personal Agents work exclusively for you. Learn how this changes everything about AI interaction."
|
||||
featured: false
|
||||
draft: false
|
||||
cat: "blog"
|
||||
|
@ -5,6 +5,7 @@ date: "December 12, 2024"
|
||||
readTime: "6 min read"
|
||||
tags: ["Cryptography", "Zero-Knowledge", "Security"]
|
||||
image: "/src/assets/balls.jpg"
|
||||
description: "How HERO's zero-knowledge architecture enables trust without compromising privacy. A deep dive into the cryptographic foundations of digital sovereignty."
|
||||
featured: false
|
||||
draft: false
|
||||
cat: "blog"
|
||||
|
@ -5,6 +5,7 @@ date: "December 10, 2024"
|
||||
readTime: "5 min read"
|
||||
tags: ["Identity", "Blockchain", "Sovereignty"]
|
||||
image: "/src/assets/white_keyb.jpg"
|
||||
description: "Tracing the journey from corporate-controlled identities to blockchain-verified, user-owned digital personas. The future is sovereign."
|
||||
featured: false
|
||||
draft: false
|
||||
cat: "blog"
|
||||
|
@ -5,6 +5,7 @@ date: "December 3, 2024"
|
||||
readTime: "4 min read"
|
||||
tags: ["Economics", "Privacy", "Value"]
|
||||
image: "/src/assets/white_keyb.jpg"
|
||||
description: "Why paying $20/month for digital freedom is the best investment you'll ever make. Breaking down the true cost of corporate data harvesting."
|
||||
featured: false
|
||||
draft: false
|
||||
cat: "blog"
|
||||
|
@ -5,6 +5,7 @@ date: "December 15, 2024"
|
||||
readTime: "8 min read"
|
||||
tags: ["Digital Sovereignty", "Privacy", "AI"]
|
||||
image: "/src/assets/heart.jpg"
|
||||
description: "In an era where tech giants control our digital lives, Personal Agents represent a fundamental shift toward individual sovereignty and privacy. Discover how HERO is leading this revolution."
|
||||
featured: true
|
||||
draft: false
|
||||
cat: "blog"
|
||||
|
@ -187,7 +187,7 @@ const Blog = () => {
|
||||
</h3>
|
||||
|
||||
<p className="text-gray-300 mb-6 leading-relaxed">
|
||||
{displayFeaturedPost.excerpt}
|
||||
{displayFeaturedPost.description}
|
||||
</p>
|
||||
|
||||
<div className="flex items-center justify-between text-sm text-gray-400 mb-6">
|
||||
@ -287,7 +287,7 @@ const Blog = () => {
|
||||
</h3>
|
||||
|
||||
<p className="text-gray-300 text-sm mb-4 leading-relaxed">
|
||||
{post.excerpt}
|
||||
{post.description}
|
||||
</p>
|
||||
|
||||
<div className="flex items-center justify-between text-xs text-gray-400">
|
||||
|
@ -19,9 +19,17 @@ const BlogPost = () => {
|
||||
const allModules = import.meta.glob('../blogs/*.md', { as: 'raw', eager: true });
|
||||
let foundContent = null;
|
||||
|
||||
for (const path in allModules) {
|
||||
if (path.endsWith(`_${slug}.md`)) {
|
||||
foundContent = allModules[path];
|
||||
const possibleFileNames = [
|
||||
`capability_${slug}.md`,
|
||||
`component_${slug}.md`,
|
||||
`tech_${slug}.md`,
|
||||
`${slug}.md` // For general blog posts
|
||||
];
|
||||
|
||||
for (const fileName of possibleFileNames) {
|
||||
const filePath = `../blogs/${fileName}`;
|
||||
if (allModules[filePath]) {
|
||||
foundContent = allModules[filePath];
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user