123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import React from "react";
- import {
- ComputerDesktopSolid,
- CurrencyDollarSolid,
- SquaresPlusSolid,
- } from "@medusajs/icons";
- import { IconBadge, Heading, Text } from "@medusajs/ui";
- const OrderDetailDefault = () => {
- return (
- <>
- <Text size="small" className="mb-6">
- You finished the setup guide 🎉 You now have your first order. Feel free
- to play around with the order management functionalities, such as
- capturing payment, creating fulfillments, and more.
- </Text>
- <Heading
- level="h2"
- className="text-ui-fg-base pt-6 border-t border-ui-border-base border-solid mb-2"
- >
- Start developing with Medusa
- </Heading>
- <Text size="small">
- Medusa is a completely customizable commerce solution. We've curated
- some essential guides to kickstart your development with Medusa.
- </Text>
- <div className="grid grid-cols-3 gap-4 mt-6 pb-6 mb-6 border-b border-ui-border-base border-solid auto-rows-fr">
- <a
- href="https://docs.medusajs.com/starters/nextjs-medusa-starter?path=simple-quickstart"
- target="_blank"
- className="flex"
- >
- <div className="p-3 rounded-rounded flex items-start bg-ui-bg-subtle shadow-elevation-card-rest hover:shadow-elevation-card-hover">
- <div className="mr-4">
- <div className="bg-ui-bg-base rounded-lg border border-ui-border-strong p-1 flex justify-center items-center">
- <IconBadge>
- <CurrencyDollarSolid />
- </IconBadge>
- </div>
- </div>
- <div>
- <Text
- size="xsmall"
- weight="plus"
- className="mb-1 text-ui-fg-base"
- >
- Start Selling in 3 Steps
- </Text>
- <Text size="small">
- Go live with a backend, an admin, and a storefront by following
- these three steps.
- </Text>
- </div>
- </div>
- </a>
- <a
- href="https://docs.medusajs.com/recipes/?ref=onboarding"
- target="_blank"
- className="flex"
- >
- <div className="p-3 rounded-rounded items-start flex bg-ui-bg-subtle shadow-elevation-card-rest hover:shadow-elevation-card-hover">
- <div className="mr-4">
- <div className="bg-ui-bg-base rounded-lg border border-ui-border-strong p-1 flex justify-center items-center">
- <IconBadge>
- <ComputerDesktopSolid />
- </IconBadge>
- </div>
- </div>
- <div>
- <Text
- size="xsmall"
- weight="plus"
- className="mb-1 text-ui-fg-base"
- >
- Build Custom Use Cases
- </Text>
- <Text size="small">
- Build a marketplace, subscription-based purchases,
- or your custom use-cases.
- </Text>
- </div>
- </div>
- </a>
- <a
- href="https://docs.medusajs.com/plugins/overview?ref=onboarding"
- target="_blank"
- className="flex"
- >
- <div className="p-3 rounded-rounded flex items-start bg-ui-bg-subtle shadow-elevation-card-rest hover:shadow-elevation-card-hover">
- <div className="mr-4">
- <div className="bg-ui-bg-base rounded-lg border border-ui-border-strong p-1 flex justify-center items-center">
- <IconBadge>
- <SquaresPlusSolid />
- </IconBadge>
- </div>
- </div>
- <div>
- <Text
- size="xsmall"
- weight="plus"
- className="mb-1 text-ui-fg-base"
- >
- Install Plugins
- </Text>
- <Text size="small">
- Check out available plugins for payment, fulfillment,
- search, and more.
- </Text>
- </div>
- </div>
- </a>
- </div>
- <div>
- You can find more useful guides in{" "}
- <a
- href="https://docs.medusajs.com/?ref=onboarding"
- target="_blank"
- className="text-ui-fg-interactive hover:text-ui-fg-interactive-hover"
- >
- our documentation
- </a>
- . If you like Medusa, please{" "}
- <a
- href="https://github.com/medusajs/medusa"
- target="_blank"
- className="text-ui-fg-interactive hover:text-ui-fg-interactive-hover"
- >
- star us on GitHub
- </a>
- .
- </div>
- </>
- );
- };
- export default OrderDetailDefault;
|