import { prisma } from '@shieldai/db'; const blogPosts = [ { slug: 'what-is-ai-voice-cloning', title: 'What Is AI Voice Cloning and How to Protect Your Family', excerpt: 'AI voice cloning technology is advancing rapidly. Learn how scammers use it to impersonate loved ones and how ShieldAI detects these attacks in real time.', content: `

Understanding AI Voice Cloning

AI voice cloning uses deep learning models to analyze a small sample of someone's voice—sometimes just a few seconds from a social media video or phone call—and generate new speech that sounds identical to the original speaker.

How Scammers Exploit It

The most common attack pattern involves a scammer calling a victim while using a cloned voice of a family member. The fake "family member" claims to be in distress—needing bail money, hospital fees, or help with a car accident. The emotional urgency makes victims less likely to question the call's authenticity.

Warning Signs

How ShieldAI Protects You

ShieldAI's VoicePrint technology creates audio fingerprints for each family member's voice. When an incoming call is detected, our AI analyzes the audio in real time and flags any call that doesn't match the verified voiceprint. You'll receive an instant alert if a voice clone is suspected.

`, authorName: 'ShieldAI Team', tags: ['voice cloning', 'AI scams', 'family protection'], published: true, }, { slug: 'dark-web-monitoring-guide', title: 'Dark Web Monitoring: What Gets Exposed and How to Stay Safe', excerpt: 'Your personal data is traded on dark web marketplaces every day. Here is what criminals buy, how they use it, and how ShieldAI monitors for your exposure.', content: `

What Is the Dark Web?

The dark web is a hidden part of the internet accessible only through specialized browsers like Tor. While it has legitimate uses for privacy and journalism, it is also the primary marketplace for stolen data, including emails, passwords, phone numbers, and Social Security numbers.

What Data Gets Exposed

How ShieldAI Monitors for You

ShieldAI continuously scans dark web marketplaces, forums, and known data leak repositories. When your monitored data appears in a new leak, we send you an immediate alert with details about what was exposed and recommended next steps.

What to Do If Your Data Is Leaked

  1. Change passwords immediately — use unique passwords for each service
  2. Enable two-factor authentication everywhere
  3. Freeze your credit if SSN was exposed
  4. Monitor bank and credit card statements for unusual activity
  5. Run a ShieldAI dark web scan to check for additional exposures
`, authorName: 'ShieldAI Team', tags: ['dark web', 'data breach', 'identity theft'], published: true, }, { slug: 'spam-call-statistics-2025', title: 'Spam Call Statistics 2025: The Rise of AI-Powered Phone Scams', excerpt: 'Spam calls are at an all-time high, and AI is making them harder to detect. Here are the latest numbers and what you can do to protect yourself.', content: `

The Scale of the Problem

In 2025, Americans received an estimated 55 billion spam calls — an average of 15 calls per person per month. AI-powered scam calls now account for 40% of all phone fraud attempts, up from just 12% in 2023.

Key Statistics

Why Traditional Blocking Falls Short

Traditional spam blockers rely on known phone number databases. But AI-powered scammers constantly rotate numbers, spoof caller IDs, and use voice cloning to bypass voice-based verification. ShieldAI's machine learning approach classifies calls based on behavioral patterns, not just number reputation — catching new scams that traditional methods miss.

`, authorName: 'ShieldAI Team', tags: ['spam calls', 'statistics', 'AI scams'], published: true, }, ]; async function seed() { console.log('Seeding blog posts...'); for (const post of blogPosts) { const existing = await prisma.blogPost.findUnique({ where: { slug: post.slug } }); if (existing) { console.log(` Skipping "${post.slug}" — already exists`); continue; } await prisma.blogPost.create({ data: { ...post, publishedAt: new Date(), }, }); console.log(` Created "${post.slug}"`); } console.log('Seed complete!'); } seed() .catch((e) => { console.error('Seed failed:', e); process.exit(1); }) .finally(async () => { await prisma.$disconnect(); });