...
This commit is contained in:
parent
6db344c62f
commit
fca039aa2d
@ -5,6 +5,7 @@ date: "December 8, 2024"
|
|||||||
readTime: "7 min read"
|
readTime: "7 min read"
|
||||||
tags: ["AI", "Personal Agents", "Technology"]
|
tags: ["AI", "Personal Agents", "Technology"]
|
||||||
image: "/src/assets/heart.jpg"
|
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
|
featured: false
|
||||||
draft: false
|
draft: false
|
||||||
cat: "blog"
|
cat: "blog"
|
||||||
|
@ -5,6 +5,7 @@ date: "December 12, 2024"
|
|||||||
readTime: "6 min read"
|
readTime: "6 min read"
|
||||||
tags: ["Cryptography", "Zero-Knowledge", "Security"]
|
tags: ["Cryptography", "Zero-Knowledge", "Security"]
|
||||||
image: "/src/assets/balls.jpg"
|
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
|
featured: false
|
||||||
draft: false
|
draft: false
|
||||||
cat: "blog"
|
cat: "blog"
|
||||||
|
@ -5,6 +5,7 @@ date: "December 10, 2024"
|
|||||||
readTime: "5 min read"
|
readTime: "5 min read"
|
||||||
tags: ["Identity", "Blockchain", "Sovereignty"]
|
tags: ["Identity", "Blockchain", "Sovereignty"]
|
||||||
image: "/src/assets/white_keyb.jpg"
|
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
|
featured: false
|
||||||
draft: false
|
draft: false
|
||||||
cat: "blog"
|
cat: "blog"
|
||||||
|
@ -5,6 +5,7 @@ date: "December 3, 2024"
|
|||||||
readTime: "4 min read"
|
readTime: "4 min read"
|
||||||
tags: ["Economics", "Privacy", "Value"]
|
tags: ["Economics", "Privacy", "Value"]
|
||||||
image: "/src/assets/white_keyb.jpg"
|
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
|
featured: false
|
||||||
draft: false
|
draft: false
|
||||||
cat: "blog"
|
cat: "blog"
|
||||||
|
@ -5,6 +5,7 @@ date: "December 15, 2024"
|
|||||||
readTime: "8 min read"
|
readTime: "8 min read"
|
||||||
tags: ["Digital Sovereignty", "Privacy", "AI"]
|
tags: ["Digital Sovereignty", "Privacy", "AI"]
|
||||||
image: "/src/assets/heart.jpg"
|
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
|
featured: true
|
||||||
draft: false
|
draft: false
|
||||||
cat: "blog"
|
cat: "blog"
|
||||||
|
@ -187,7 +187,7 @@ const Blog = () => {
|
|||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<p className="text-gray-300 mb-6 leading-relaxed">
|
<p className="text-gray-300 mb-6 leading-relaxed">
|
||||||
{displayFeaturedPost.excerpt}
|
{displayFeaturedPost.description}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div className="flex items-center justify-between text-sm text-gray-400 mb-6">
|
<div className="flex items-center justify-between text-sm text-gray-400 mb-6">
|
||||||
@ -287,7 +287,7 @@ const Blog = () => {
|
|||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<p className="text-gray-300 text-sm mb-4 leading-relaxed">
|
<p className="text-gray-300 text-sm mb-4 leading-relaxed">
|
||||||
{post.excerpt}
|
{post.description}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div className="flex items-center justify-between text-xs text-gray-400">
|
<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 });
|
const allModules = import.meta.glob('../blogs/*.md', { as: 'raw', eager: true });
|
||||||
let foundContent = null;
|
let foundContent = null;
|
||||||
|
|
||||||
for (const path in allModules) {
|
const possibleFileNames = [
|
||||||
if (path.endsWith(`_${slug}.md`)) {
|
`capability_${slug}.md`,
|
||||||
foundContent = allModules[path];
|
`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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user