|
| 1 | +import { SimpleLayout } from '@/components/SimpleLayout'; |
| 2 | +import { Mail, Slack, SquarePen } from 'lucide-react'; |
| 3 | +import { Button } from '@/components/Button'; |
| 4 | + |
| 5 | +export const metadata = { |
| 6 | + title: 'Support', |
| 7 | + description: 'Get help on a project or with a service.', |
| 8 | +}; |
| 9 | + |
| 10 | +export default function Support() { |
| 11 | + return ( |
| 12 | + <SimpleLayout |
| 13 | + title='Get help.' |
| 14 | + intro="We offer multiple ways to get assistance with our products and services. Please choose one of the options below for support. If you're still unable to find the help you need, feel free to reach out to us via email." |
| 15 | + > |
| 16 | + <div className='flex flex-col space-y-8'> |
| 17 | + <div className=''> |
| 18 | + <div className='font-bold'>Slack</div> |
| 19 | + <div className='text-sm text-zinc-600'> |
| 20 | + Slack offers a collaborative and community-driven space where you |
| 21 | + can easily ask questions and receive support from both our team and |
| 22 | + fellow users. It's often the quickest way to get assistance and |
| 23 | + fosters a more interactive, support-focused environment. |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + <div className=''> |
| 27 | + <div className='font-bold'>Email</div> |
| 28 | + <div className='text-sm text-zinc-600'> |
| 29 | + For more complex issues or when sensitive information—such as |
| 30 | + emails, passwords, or login credentials—needs to be securely |
| 31 | + exchanged, email is the preferred method of communication. It |
| 32 | + ensures a private and direct channel for resolving your concerns. |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + <div className=''> |
| 36 | + <div className='font-bold'>Contact Form</div> |
| 37 | + <div className='text-sm text-zinc-600'> |
| 38 | + For a faster way to reach our support team, use the contact form to |
| 39 | + email us directly. |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + <div className='flex flex-row items-center space-x-4'> |
| 43 | + <Button href='https://slack.deschutesdesigngroup.com' target='_blank'> |
| 44 | + <Slack className='size-4' /> |
| 45 | + Join Slack |
| 46 | + </Button> |
| 47 | + <Button |
| 48 | + variant='secondary' |
| 49 | + href='mailto:support@deschutesdesigngroup.com' |
| 50 | + > |
| 51 | + <Mail className='size-4' /> |
| 52 | + Email us |
| 53 | + </Button> |
| 54 | + <Button variant='secondary' href='/contact'> |
| 55 | + <SquarePen className='size-4' /> |
| 56 | + Contact form |
| 57 | + </Button> |
| 58 | + </div> |
| 59 | + </div> |
| 60 | + </SimpleLayout> |
| 61 | + ); |
| 62 | +} |
0 commit comments