page.tsx 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import Shape from '@/components/Shape';
  2. export const metadata = {
  3. title: 'Support',
  4. description: 'Get help and assistance on our Support page. Find answers to your queries and resolve issues quickly. We\'re here to support you.',
  5. };
  6. export default function Support() {
  7. return (
  8. <section className="section">
  9. <div className="container">
  10. <div className="section-header">
  11. <h1 className="section-title section-title-lg">Tabler Support</h1>
  12. <p className="section-description">
  13. If you have any questions regarding our theme, feel free to contact us using one of the methods below. We
  14. usually reply within 24 hours.
  15. </p>
  16. </div>
  17. <div className="row xl:g-6">
  18. <div className="sm:col-6 lg:col-4">
  19. <div className="box text-center">
  20. <Shape icon="message" color="primary" size="md" className="mb-4" />
  21. <h3>General Inquiry</h3>
  22. <p className="text-muted">
  23. Have a question? Something is not clear? Or maybe you just want to say ‘Hi!’ We usually reply within 24
  24. hours.
  25. </p>
  26. <a href="mailto:hello@tabler.io" className="btn">
  27. Send a Message
  28. </a>
  29. </div>
  30. </div>
  31. <div className="sm:col-6 lg:col-4">
  32. <div className="box text-center">
  33. <Shape icon="settings" color="primary" size="md" className="mb-4" />
  34. <h3>Technical Support</h3>
  35. <p className="text-muted">
  36. Something is wrong with one of our theme? Found a bug or have a feature request?
  37. </p>
  38. <a
  39. href="https://github.com/tabler/tabler/issues/new/choose"
  40. className="btn"
  41. target="_blank"
  42. rel="noopener noreferrer"
  43. >
  44. Open a new issue
  45. </a>
  46. </div>
  47. </div>
  48. <div className="sm:col-6 lg:col-4">
  49. <div className="box text-center">
  50. <Shape icon="adjustments" color="primary" size="md" className="mb-4" />
  51. <h3>Customization</h3>
  52. <p className="text-muted">
  53. Need one of theme customized? Let us know exactly what you need and we’ll get back to you with a quote.
  54. </p>
  55. <a href="mailto:support@tabler.io" className="btn">
  56. Get a Quote
  57. </a>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </section>
  63. );
  64. }