#!/usr/bin/env node const fs = require('fs'); const path = require('path'); // Create an SVG favicon with a gradient background and initials function generateFavicon() { // Define colors for gradient const primaryColor = '#3498db'; // Blue const secondaryColor = '#2980b9'; // Darker blue // Create SVG content with gradient and text const svgContent = ` `; // Write SVG file fs.writeFileSync(path.join(__dirname, 'favicon.svg'), svgContent); console.log('Generated favicon.svg'); } // Run the generator generateFavicon();