File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
src/app/(thank-you-pages)/contact-thank-you Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments