import React from "react"; import Grid from "@mui/material/Grid"; import Card from "@mui/material/Card"; import { Box, Typography } from "@mui/material"; import TrackOrder from "@/components/eCommerce/OrderDetails/TrackOrder"; import OrderTable from "@/components/eCommerce/OrderDetails/TrackOrder/OrderTable"; import Link from 'next/link'; import styles from '@/styles/PageTitle.module.css' const OrderDetails = () => { return ( <> {/* Page title */}

Order Details

{/* TrackOrder */} {/* OrderTable */} Shipping Information Thomas Adison Address: 3559 Roosevelt Wilson Lane San Bernardino, CA 92405 Phone: (123) 456-7890 Email: contact@gmail.com Billing Information Thomas Adison Payment Type: Credit Card Provider: Visa ending in 2851 Valid Date: April 22 2019 CVV: xxx Delivery Info UPS Delivery Order ID : xxxx235 Payment Mode : COD Email: info@contact.com ); }; export default OrderDetails;