import type { Metadata } from "next"; import Link from "next/link"; export const metadata: Metadata = { title: "Free Tools & Audits — Van Hunen IT", description: "Run free reliability, DNS, and performance checks or request quick IT audits. Diagnose, optimize, and secure your website in minutes.", robots: { index: true, follow: true }, alternates: { canonical: "/free" }, }; export default function FreeIndex() { const tools = [ { title: "Web Reliability Check", excerpt: "Test your website’s uptime, SSL, and DNS performance — get an instant reliability grade (A–F).", href: "/free/web-reliability-check", }, { title: "DNS Health Analyzer", excerpt: "Check your domain’s DNS setup for missing SPF, DMARC, or CAA records and other critical issues.", href: "/free/dns-health-analyzer", }, { title: "Website Speed Test (Lite)", excerpt: "Run a Lighthouse-based performance test and see how your site scores for speed, SEO, and accessibility.", href: "/free/website-speed-test", }, { title: "Server Header Inspector", excerpt: "Check your site’s security headers like HSTS, CSP, and Referrer-Policy to spot missing protections.", href: "/free/server-header-inspector", }, { title: "Cloudflare Optimization Checker", excerpt: "Analyze if your Cloudflare settings are optimized for caching, SSL, and performance.", href: "/free/cloudflare-checker", }, { title: "Uptime Monitor (Free Tier)", excerpt: "Set up free uptime monitoring for your website and receive downtime alerts instantly.", href: "/free/uptime-monitor", }, { title: "SSL/TLS Expiry Tracker", excerpt: "Track when your SSL certificate expires and receive an automated renewal reminder.", href: "/free/ssl-expiry-tracker", }, { title: "Website Backup Readiness Test", excerpt: "Check if your website is protected by regular automated backups and detect missing layers.", href: "/free/backup-readiness-test", }, { title: "Email Deliverability Tester", excerpt: "Send a test email and verify SPF, DKIM, and DMARC for maximum inbox reliability.", href: "/free/email-deliverability-tester", }, { title: "Docker Deployment Readiness Tool", excerpt: "Scan your public repository for Docker configuration quality and best practices.", href: "/free/docker-readiness", }, { title: "Kubernetes Cost Estimator", excerpt: "Estimate infrastructure costs for your Kubernetes or k3s setup based on your resources.", href: "/free/kubernetes-cost-estimator", }, { title: "Minecraft Server Performance Checker", excerpt: "Test TPS, latency, and plugin performance of your Minecraft server in seconds.", href: "/free/minecraft-checker", }, { title: "Site Downtime Simulation Demo", excerpt: "Simulate downtime to visualize business impact and recovery time objectives.", href: "/free/downtime-simulator", }, { title: "Automation ROI Calculator", excerpt: "See how much time and cost you could save by automating repetitive IT or admin tasks.", href: "/free/automation-roi-calculator", }, { title: "VPS Performance Benchmark Tool", excerpt: "Run a quick benchmark on your VPS or server to test CPU, I/O, and disk performance.", href: "/free/vps-benchmark", }, ]; const services = [ { title: "20-Minute Tech Health Check", excerpt: "A quick diagnostic session covering your hosting, DNS, SSL, and uptime setup.", href: "/free/tech-health-check", }, { title: "DNS & Mail Deliverability Audit", excerpt: "Get a personalized DNS and email configuration audit to fix SPF, DKIM, and DMARC issues.", href: "/free/dns-mail-audit", }, { title: "Website Speed & Optimization Preview", excerpt: "Receive a short performance report and improvement roadmap for your website.", href: "/free/website-optimization-preview", }, { title: "Cloudflare Setup Review", excerpt: "Let us analyze your Cloudflare configuration for speed, caching, and SSL performance.", href: "/free/cloudflare-review", }, { title: "Security Headers Checkup", excerpt: "We’ll scan your site headers for vulnerabilities and send a one-page hardening report.", href: "/free/security-checkup", }, { title: "Backup & Recovery Simulation", excerpt: "Test your current backup setup and identify gaps in your disaster recovery plan.", href: "/free/backup-simulation", }, { title: "Uptime Reliability Snapshot", excerpt: "We’ll monitor your domain for 24 hours and share an uptime report with insights.", href: "/free/reliability-snapshot", }, { title: "Automation Opportunity Call", excerpt: "Tell us your weekly routines — we’ll identify tasks that could be automated instantly.", href: "/free/automation-call", }, ]; return (
{/* --- Header --- */}

Free Tools & Quick Audits

Diagnose, benchmark, and optimize your IT setup with a collection of free utilities and expert mini-audits. No sign-up required, privacy-friendly, and built by{" "} Van Hunen IT.

{/* --- Automated Tools --- */}

Automated Tools

{tools.map((t, i) => (

{t.title}

{t.excerpt}

Open Tool
))}
{/* --- Free Audits & Services --- */}

Free Audits & Quick Services

{services.map((s, i) => (

{s.title}

{s.excerpt}

Request
))}
{/* --- CTA Banner --- */}

Not Sure Where to Start?

Book a free 15-minute consultation and we’ll help you pick the right checks or services for your setup.

Book Free Call
); }