chore: Add free tools on marketing pages

This commit is contained in:
Dries Augustyns
2025-12-29 19:22:35 +01:00
parent 5993b842a0
commit 6293259225
15 changed files with 1822 additions and 22 deletions
+37
View File
@@ -0,0 +1,37 @@
import {CheckCircle, Mail, Search, Shield} from 'lucide-react';
/**
* Educational content for the email verification tool
*/
export const EMAIL_VERIFICATION_FEATURES = [
{
title: 'Improve Deliverability',
description: 'Remove invalid emails before sending to reduce bounce rates and improve email deliverability.',
icon: Mail,
},
{
title: 'Catch Typos',
description: 'Detect common typos like "gmial.com" and suggest corrections to capture valid addresses.',
icon: Search,
},
{
title: 'Protect Reputation',
description: 'High bounce rates hurt your sender reputation. Verify emails to maintain a good standing.',
icon: Shield,
},
{
title: 'DNS Validation',
description: 'Check if the email domain exists and has properly configured MX records for receiving mail.',
icon: CheckCircle,
},
{
title: 'Disposable Detection',
description: 'Identify temporary email addresses that are often used for spam or fake signups.',
icon: Mail,
},
{
title: 'Plus Addressing',
description: 'Detect plus-addressed emails ([email protected]) which can be useful for tracking.',
icon: Shield,
},
] as const;