// Simple script to generate OG image // This creates a placeholder - in production you'd use a proper image generation service const fs = require('fs'); const path = require('path'); // Create a simple SVG that can be used as OG image const svgContent = ` 🌐 Personal Network Manager Build and manage your professional network with ease 📊 LinkedIn Integration 👥 Contact Management 📱 QR Invitations nao-pnm-ui.pages.dev `; // Write the SVG file fs.writeFileSync(path.join(__dirname, '../public/og-image.svg'), svgContent); console.log('OG image generated successfully!'); console.log('Note: For production, convert this SVG to PNG for better social media compatibility');