1
mirror of https://github.com/jakejarvis/hoot.git synced 2025-10-18 20:14:25 -04:00

Update domain report title format in page component

This commit is contained in:
2025-10-13 09:19:55 -04:00
parent c0591a0cf3
commit 59263aae46

View File

@@ -19,11 +19,8 @@ export async function generateMetadata({
const decoded = decodeURIComponent(raw);
const normalized = normalizeDomainInput(decoded);
const isRegistrable = toRegistrableDomain(normalized);
if (!isRegistrable) notFound();
return {
title: `Domain Report: ${normalized}Hoot`,
title: `${normalized}Domain Report`,
description: `Investigate ${normalized}'s WHOIS, DNS, SSL, headers, and more.`,
};
}