import re # Read the modified file with open('app/services/repairs/page.tsx', 'r') as f: content = f.read() # Modify Hero section to add links hero_pattern = r'
\s*Rocky Mountain Vending delivers expert vending machine repair and maintenance services to keep your business thriving\. From resolving jammed coin slots and refrigeration issues to fixing non-dispensing machines, our skilled technicians ensure reliable performance\. Contact us today for fast, professional solutions!\s*
' hero_replacement = '''Rocky Mountain Vending delivers expert vending machine repair and maintenance services to keep your business thriving. From resolving jammed coin slots and refrigeration issues to fixing non-dispensing machines, our skilled technicians ensure reliable performance. For all your vending machine parts needs and professional vending machine moving services, contact us today for fast, professional solutions!
''' content = re.sub(hero_pattern, hero_replacement, content, flags=re.MULTILINE | re.DOTALL) # Write the modified content with open('app/services/repairs/page.tsx', 'w') as f: f.write(content) print("✅ Successfully updated Hero section with internal links!")