-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add landing pages for lookup subfeatures 🛬
- Loading branch information
1 parent
cbd48a7
commit f4a1095
Showing
9 changed files
with
177 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import type { FC } from 'react'; | ||
|
||
import { SearchForm } from '../../_components/search-form'; | ||
import { SponsorsSection } from '../_components/sponsors-section'; | ||
import { AuthorSection } from './../_components/author-section'; | ||
import { TrustedBySection } from './../_components/trusted-by-section'; | ||
|
||
export const metadata = { | ||
openGraph: { | ||
url: '/certs', | ||
}, | ||
alternates: { | ||
canonical: '/certs', | ||
}, | ||
}; | ||
|
||
const CertsLandingPage: FC = () => { | ||
return ( | ||
<div className="container space-y-16 pt-24"> | ||
<section> | ||
<h1 className="mb-8 scroll-m-20 pb-2 text-center text-2xl font-semibold tracking-tight first:mt-0 sm:text-3xl"> | ||
Find certificate history for any domain | ||
</h1> | ||
<div className="mx-auto max-w-4xl"> | ||
<SearchForm subpage="certs" autofocus /> | ||
</div> | ||
</section> | ||
|
||
<TrustedBySection subpage="certs" /> | ||
<AuthorSection /> | ||
<SponsorsSection /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CertsLandingPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import type { FC } from 'react'; | ||
|
||
import { SearchForm } from '../../_components/search-form'; | ||
import { SponsorsSection } from '../_components/sponsors-section'; | ||
import { AuthorSection } from './../_components/author-section'; | ||
import { TrustedBySection } from './../_components/trusted-by-section'; | ||
|
||
export const metadata = { | ||
openGraph: { | ||
url: '/map', | ||
}, | ||
alternates: { | ||
canonical: '/map', | ||
}, | ||
}; | ||
|
||
const MapLandingPage: FC = () => { | ||
return ( | ||
<div className="container space-y-16 pt-24"> | ||
<section> | ||
<h1 className="mb-8 scroll-m-20 pb-2 text-center text-2xl font-semibold tracking-tight first:mt-0 sm:text-3xl"> | ||
Run DNS lookups across multiple regions | ||
</h1> | ||
<div className="mx-auto max-w-4xl"> | ||
<SearchForm subpage="map" autofocus /> | ||
</div> | ||
</section> | ||
|
||
<TrustedBySection subpage="map" /> | ||
<AuthorSection /> | ||
<SponsorsSection /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default MapLandingPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import type { FC } from 'react'; | ||
|
||
import { SearchForm } from '../../_components/search-form'; | ||
import { SponsorsSection } from '../_components/sponsors-section'; | ||
import { AuthorSection } from './../_components/author-section'; | ||
import { TrustedBySection } from './../_components/trusted-by-section'; | ||
|
||
export const metadata = { | ||
openGraph: { | ||
url: '/subdomains', | ||
}, | ||
alternates: { | ||
canonical: '/subdomains', | ||
}, | ||
}; | ||
|
||
const SubdomainsLandingPage: FC = () => { | ||
return ( | ||
<div className="container space-y-16 pt-24"> | ||
<section> | ||
<h1 className="mb-8 scroll-m-20 pb-2 text-center text-2xl font-semibold tracking-tight first:mt-0 sm:text-3xl"> | ||
Find hidden subdomains for any domain | ||
</h1> | ||
<div className="mx-auto max-w-4xl"> | ||
<SearchForm subpage="subdomains" autofocus /> | ||
</div> | ||
</section> | ||
|
||
<TrustedBySection subpage="subdomains" /> | ||
<AuthorSection /> | ||
<SponsorsSection /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default SubdomainsLandingPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import type { FC } from 'react'; | ||
|
||
import { SearchForm } from '../../_components/search-form'; | ||
import { SponsorsSection } from '../_components/sponsors-section'; | ||
import { AuthorSection } from './../_components/author-section'; | ||
import { TrustedBySection } from './../_components/trusted-by-section'; | ||
|
||
export const metadata = { | ||
openGraph: { | ||
url: '/whois', | ||
}, | ||
alternates: { | ||
canonical: '/whois', | ||
}, | ||
}; | ||
|
||
const WhoisLandingPage: FC = () => { | ||
return ( | ||
<div className="container space-y-16 pt-24"> | ||
<section> | ||
<h1 className="mb-8 scroll-m-20 pb-2 text-center text-2xl font-semibold tracking-tight first:mt-0 sm:text-3xl"> | ||
Find WHOIS information for any domain | ||
</h1> | ||
<div className="mx-auto max-w-4xl"> | ||
<SearchForm subpage="whois" autofocus /> | ||
</div> | ||
</section> | ||
|
||
<TrustedBySection subpage="whois" /> | ||
<AuthorSection /> | ||
<SponsorsSection /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default WhoisLandingPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters