/* This example requires some changes to your config: ``` // tailwind.config.js module.exports = { // ... plugins: [ // ... require('@tailwindcss/forms'), ], } ``` */ import { UserIcon } from '@heroicons/react/24/outline' const products = [ { id: 1, name: "Women's Basic Tee", href: '#', price: '$32.00', color: 'Gray', size: 'S', imageSrc: 'https://tailwindui.com/img/ecommerce-images/checkout-page-05-product-01.jpg', imageAlt: "Front of women's basic tee in heather gray.", }, // More products... ] export default function Example() { return (
Your Company
Contact support Account

Checkout

Order summary

    {products.map((product) => (
  • {product.imageAlt}

    {product.name}

    {product.price}

    {product.color}

    {product.size}

  • ))}
Subtotal
$104.00
Taxes
$8.32
Shipping
$14.00
Total
$126.32

Contact information

) }