// @mui material components import Grid from "@mui/material/Grid" import Card from "@mui/material/Card" import Table from "@mui/material/Table" import TableRow from "@mui/material/TableRow" import TableBody from "@mui/material/TableBody" import { Theme } from "@mui/material/styles" // ThreeD Garden components import MDBox from "~/components/mui/MDBox" import MDTypography from "~/components/mui/MDTypography" import MDButton from "~/components/mui/MDButton" // Invoice page components // import BaseLayout from "~/pages/account/components/BaseLayout" import DashboardLayout from "~/components/elements/LayoutContainers/DashboardLayout" import DashboardNavbar from "~/components/elements/Navbars/DashboardNavbar" // ThreeD Garden context import { useMaterialUIController } from "~/context" // Images import logo from "~/assets/images/logos/logo-threedgarden-text.png" import logoDark from "~/assets/images/logos/logo-threedgarden.png" function Invoice(): JSX.Element { const [controller] = useMaterialUIController() const { darkMode } = controller const borderBottom = { borderBottom: ({ borders: { borderWidth }, palette: { light } }: Theme) => `${borderWidth[1]} solid ${light.main}`, } return ( {/* Invoice Header */} ThreeD Garden
Fort Bragg, California 95437
United States
tel: +1 707-980-1136
Billed to: Marty McGee 4006 Locust View Drive
San Francisco, CA 94105
United States
Invoice # #10453119 Invoice Date: 2022-03-07 Due Date: 2022-03-11
{/* Invoice table */} Item Qty Rate Amount Premium Support 1 $ 9.00 $ 9.00 Company Juice Material UI 2 PRO 3 $ 100.00 $ 300.00 3rd Party Software 1 $ 89.00 $ 89.00 Total $ 398
{/* Invoice footer */} Thank you! If you encounter any issues related to the invoice, you can contact us at: email:{" "} support@companyjuice.com window.print()}> print
) } export default Invoice