-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a contact-form-submit thank you page
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { LandingLayout } from '@/components/layout/landing-layout'; | ||
import { SuccessHero } from '@/components/sections/success-hero'; | ||
|
||
import { Text } from '@/components/elements/text'; | ||
import { Link } from '@/components/elements/link'; | ||
import { Button } from '@/components/elements/button'; | ||
import Stack from '@/components/elements/stack'; | ||
|
||
export default function ContactThankYouPage() { | ||
return ( | ||
<LandingLayout> | ||
<SuccessHero | ||
heading="Thanks for your message" | ||
excerpt={<> | ||
<Text>Keep an eye on your inbox for a response shortly.</Text> | ||
<Text> | ||
If you need help in the meantime, take a look at the documentation | ||
and the existing discussions on GitHub: | ||
</Text> | ||
</>} | ||
|
||
callToAction={ | ||
<Stack $direction='row' $gapxl="24px" $alignItems="center"> | ||
<Button | ||
href="/docs" | ||
$variant="secondary" | ||
>Read the docs</Button> | ||
<Button | ||
href="https://github.com/httptoolkit/httptoolkit/issues/" | ||
$variant="secondary" | ||
>Check out GitHub</Button> | ||
</Stack> | ||
} | ||
/> | ||
</LandingLayout> | ||
); | ||
} |