order-detail.tsx 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import React from "react";
  2. import IconBadge from "../../shared/icon-badge";
  3. import ComputerDesktopIcon from "../../shared/icons/computer-desktop-icon";
  4. import DollarSignIcon from "../../shared/icons/dollar-sign-icon";
  5. const OrderDetail = () => {
  6. return (
  7. <>
  8. <p className="text-sm">
  9. You finished the setup guide 🎉 You now have your first order. Feel free
  10. to play around with the order management functionalities, such as
  11. capturing payment, creating fulfillments, and more.
  12. </p>
  13. <h2 className="text-base mt-5 pt-5 pb-5 font-semibold text-black border-t border-gray-300 border-solid">
  14. Start developing with Medusa
  15. </h2>
  16. <p className="text-sm">
  17. Medusa is a completely customizable commerce solution. We've curated
  18. some essential guides to kickstart your development with Medusa.
  19. </p>
  20. <div className="grid grid-cols-2 gap-4 mt-5 pb-5 mb-5 border-b border-gray-300 border-solid">
  21. <a
  22. href="https://medusa-docs-git-docs-onboarding-material-medusajs.vercel.app/starters/nextjs-medusa-starter?path=simple-quickstart"
  23. target="_blank"
  24. >
  25. <div
  26. className="p-4 rounded-rounded flex items-center bg-slate-50"
  27. style={{
  28. boxShadow:
  29. "0px 0px 0px 1px rgba(17, 24, 28, 0.08), 0px 1px 2px -1px rgba(17, 24, 28, 0.08), 0px 2px 4px rgba(17, 24, 28, 0.04)",
  30. }}
  31. >
  32. <div className="mr-base">
  33. <IconBadge>
  34. <DollarSignIcon />
  35. </IconBadge>
  36. </div>
  37. <div>
  38. <p className="font-semibold text-gray-700">
  39. Start Selling in 3 Steps
  40. </p>
  41. <p className="text-xs">
  42. Go live with a backend, an admin,
  43. <br /> and a storefront in three steps.
  44. </p>
  45. </div>
  46. </div>
  47. </a>
  48. <a
  49. href="https://medusa-docs-git-docs-onboarding-material-medusajs.vercel.app/recipes"
  50. target="_blank"
  51. >
  52. <div
  53. className="p-4 rounded-rounded items-center flex bg-slate-50"
  54. style={{
  55. boxShadow:
  56. "0px 0px 0px 1px rgba(17, 24, 28, 0.08), 0px 1px 2px -1px rgba(17, 24, 28, 0.08), 0px 2px 4px rgba(17, 24, 28, 0.04)",
  57. }}
  58. >
  59. <div className="mr-base">
  60. <IconBadge>
  61. <ComputerDesktopIcon />
  62. </IconBadge>
  63. </div>
  64. <div>
  65. <p className="font-semibold text-gray-700">
  66. Build a Custom Commerce Application
  67. </p>
  68. <p className="text-xs">
  69. Learn how to build a marketplace, subscription-based
  70. <br /> purchases, or your custom use-case.
  71. </p>
  72. </div>
  73. </div>
  74. </a>
  75. </div>
  76. <div>
  77. You can find more useful guides in{" "}
  78. <a
  79. href="https://docs.medusajs.com/"
  80. target="_blank"
  81. className="text-blue-500 font-semibold"
  82. >
  83. our documentation
  84. </a>
  85. .
  86. </div>
  87. </>
  88. );
  89. };
  90. export default OrderDetail;