Skip to content

Commit

Permalink
Create a contact-form-submit thank you page
Browse files Browse the repository at this point in the history
  • Loading branch information
pimterry committed Dec 11, 2024
1 parent 3ca7b46 commit 8efbd75
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/app/(thank-you-pages)/contact-thank-you/page.tsx
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>
);
}

0 comments on commit 8efbd75

Please sign in to comment.