
import {
  Card,
  CardHeader,
  CardTitle,
  CardDescription,
  CardContent,
  CardFooter,
} from "zudoku/ui/Card";

# Intergalactic Shipping Process

Our streamlined process ensures your cargo reaches its destination safely and efficiently.

<Stepper>

1. **Prepare Your Cargo**

   Before shipping, ensure your cargo meets our safety standards:
   - Vacuum-sealed packaging
   - Anti-matter containment (if applicable)
   - Radiation shielding
   - Zero-gravity stabilization

   :::warning

   Improperly packaged cargo may be rejected at our spaceports.

   :::

1. **Book Your Shipment**

   Use our SDK to create a shipping request:

   ```js title="Book your shipment"
   const shipment = await cosmocargo.shipments.create({
     origin: "Earth",
     destination: "Mars Colony Alpha",
     cargo: {
       items: ["supplies", "equipment"],
       weight: "500kg",
       specialHandling: ["zero-g", "radiation-shielded"],
     },
   });
   ```

   or you can call the API directly using the API Playground:

   <OpenPlaygroundButton server="https://cosmocargo.dev" url="/shipments" method="POST" />

1. **Spaceport Processing**

   Your cargo undergoes:
   - Automated scanning
   - Weight verification
   - Safety compliance checks
   - Route optimization

   :::tip

   Arrive at least 2 hours before your scheduled launch window.

   :::

1. **Launch & Transit**
   - Quantum-powered propulsion
   - Automated navigation
   - Real-time tracking
   - Emergency protocols

1. **Delivery & Confirmation**

   Upon arrival:
   - Automated unloading
   - Final inspection
   - Digital signature collection
   - Delivery confirmation

</Stepper>

<Card className="not-prose">
  <CardHeader>
    <CardTitle>Need Help?</CardTitle>
    <CardDescription>
      <span>Our space logistics team is here to assist</span>
    </CardDescription>
  </CardHeader>
  <CardContent>
    Contact our 24/7 support team for any questions about the shipping process.
  </CardContent>
  <CardFooter>
    <Button>Contact Support</Button>
  </CardFooter>
</Card>
