This commit is contained in:
despiegk 2025-08-03 08:10:47 +02:00
parent 86867b2d5a
commit f650b917ad
8 changed files with 9 additions and 2 deletions

View File

@ -7,6 +7,7 @@ tags: ["AI", "Personal Agents", "Technology"]
image: "/src/assets/heart.jpg"
featured: false
draft: false
cat: "blog"
---
Unlike corporate AI that serves shareholders, Personal Agents work exclusively for you. Learn how this changes everything about AI interaction.

View File

@ -7,6 +7,7 @@ tags: ["Cryptography", "Zero-Knowledge", "Security"]
image: "/src/assets/balls.jpg"
featured: false
draft: false
cat: "blog"
---
How HERO's zero-knowledge architecture enables trust without compromising privacy. A deep dive into the cryptographic foundations of digital sovereignty.

View File

@ -7,6 +7,7 @@ tags: ["Identity", "Blockchain", "Sovereignty"]
image: "/src/assets/white_keyb.jpg"
featured: false
draft: false
cat: "blog"
---
Tracing the journey from corporate-controlled identities to blockchain-verified, user-owned digital personas. The future is sovereign.

View File

@ -7,6 +7,7 @@ tags: ["Communication", "P2P", "Privacy"]
image: "/src/assets/heart.jpg"
featured: false
draft: false
cat: "blog"
---
How HERO enables direct communication between Personal Agents without corporate intermediaries. The future of private messaging is here.

View File

@ -7,6 +7,7 @@ tags: ["Quantum Computing", "Storage", "Security"]
image: "/src/assets/balls.jpg"
featured: false
draft: false
cat: "blog"
---
As quantum computing threatens traditional encryption, HERO's quantum-safe storage ensures your data remains secure for generations.

View File

@ -7,6 +7,7 @@ tags: ["Economics", "Privacy", "Value"]
image: "/src/assets/white_keyb.jpg"
featured: false
draft: false
cat: "blog"
---
Why paying $20/month for digital freedom is the best investment you'll ever make. Breaking down the true cost of corporate data harvesting.

View File

@ -7,6 +7,7 @@ tags: ["Digital Sovereignty", "Privacy", "AI"]
image: "/src/assets/heart.jpg"
featured: true
draft: false
cat: "blog"
---
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.

View File

@ -30,8 +30,8 @@ const Blog = () => {
// Extract slug from filename
const slug = path.split('/').pop().replace('.md', '');
// Only include posts that are not drafts
if (frontmatter.draft !== true) {
// Only include posts that are not drafts and have cat="blog"
if (frontmatter.draft !== true && frontmatter.cat === 'blog') {
loadedPosts.push({
...frontmatter,
slug,