import type { Metadata } from "next"; import Link from "next/link"; export const metadata: Metadata = { title: "Free tools", description: "Quick checks for email, edge security headers and DNS health.", robots: { index: false, follow: true }, alternates: { canonical: "/free" } }; export default function FreeIndex() { const tools = [ { title:"Email Auth Check (DMARC/SPF/DKIM)", excerpt:"See if DMARC, SPF and common DKIM selectors are configured.", href:"/free/email-check" }, { title:"Edge Security Headers Check", excerpt:"Inspect HSTS, CSP, X-Frame-Options, Referrer-Policy and more.", href:"/free/edge-check" }, { title:"DNS Health Snapshot", excerpt:"Look up A/AAAA, MX, NS and CAA records at a glance.", href:"/free/dns-health" } ]; return (

Free tools

Helpful checks you can run in seconds. No sign-up needed.

{tools.map((t)=>(

{t.title}

{t.excerpt}

Open
))}
); }