Skip to content

Commit 8efbd75

Browse files
committed
Create a contact-form-submit thank you page
1 parent 3ca7b46 commit 8efbd75

File tree

1 file changed

+37
-0
lines changed
  • src/app/(thank-you-pages)/contact-thank-you

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import { LandingLayout } from '@/components/layout/landing-layout';
2+
import { SuccessHero } from '@/components/sections/success-hero';
3+
4+
import { Text } from '@/components/elements/text';
5+
import { Link } from '@/components/elements/link';
6+
import { Button } from '@/components/elements/button';
7+
import Stack from '@/components/elements/stack';
8+
9+
export default function ContactThankYouPage() {
10+
return (
11+
<LandingLayout>
12+
<SuccessHero
13+
heading="Thanks for your message"
14+
excerpt={<>
15+
<Text>Keep an eye on your inbox for a response shortly.</Text>
16+
<Text>
17+
If you need help in the meantime, take a look at the documentation
18+
and the existing discussions on GitHub:
19+
</Text>
20+
</>}
21+
22+
callToAction={
23+
<Stack $direction='row' $gapxl="24px" $alignItems="center">
24+
<Button
25+
href="/docs"
26+
$variant="secondary"
27+
>Read the docs</Button>
28+
<Button
29+
href="https://github.com/httptoolkit/httptoolkit/issues/"
30+
$variant="secondary"
31+
>Check out GitHub</Button>
32+
</Stack>
33+
}
34+
/>
35+
</LandingLayout>
36+
);
37+
}

0 commit comments

Comments
 (0)