Skip to content

Commit

Permalink
Fix feature landing page search leading to main results 😬
Browse files Browse the repository at this point in the history
  • Loading branch information
wotschofsky committed Dec 10, 2024
1 parent 85fff66 commit e99d860
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/(landing)/certs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const CertsLandingPage: FC = () => (
Find certificate history for any domain
</h1>
<div className="mx-auto w-full max-w-2xl">
<SearchForm autofocus />
<SearchForm subpage="certs" autofocus />
</div>
<p className="mb-20 mt-4 text-center text-sm/6 text-zinc-500 dark:text-zinc-400">
Find all DNS records, WHOIS data, SSL/TLS certificate history,
Expand Down
2 changes: 1 addition & 1 deletion app/(landing)/map/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const MapLandingPage: FC = () => (
Run DNS lookups across multiple regions
</h1>
<div className="mx-auto w-full max-w-2xl">
<SearchForm autofocus />
<SearchForm subpage="map" autofocus />
</div>
<p className="mb-20 mt-4 text-center text-sm/6 text-zinc-500 dark:text-zinc-400">
Find all DNS records, WHOIS data, SSL/TLS certificate history,
Expand Down
2 changes: 1 addition & 1 deletion app/(landing)/subdomains/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const SubdomainsLandingPage: FC = () => (
Find hidden subdomains for any domain
</h1>
<div className="mx-auto w-full max-w-2xl">
<SearchForm autofocus />
<SearchForm subpage="subdomains" autofocus />
</div>
<p className="mb-20 mt-4 text-center text-sm/6 text-zinc-500 dark:text-zinc-400">
Find all DNS records, WHOIS data, SSL/TLS certificate history,
Expand Down
2 changes: 1 addition & 1 deletion app/(landing)/whois/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const WhoisLandingPage: FC = () => (
Find WHOIS information for any domain
</h1>
<div className="mx-auto w-full max-w-2xl">
<SearchForm autofocus />
<SearchForm subpage="whois" autofocus />
</div>
<p className="mb-20 mt-4 text-center text-sm/6 text-zinc-500 dark:text-zinc-400">
Find all DNS records, WHOIS data, SSL/TLS certificate history,
Expand Down

0 comments on commit e99d860

Please sign in to comment.