diff --git a/app/[locale]/product/[handle]/page.tsx b/app/[locale]/product/[handle]/page.tsx
index f8306e001..f381db116 100644
--- a/app/[locale]/product/[handle]/page.tsx
+++ b/app/[locale]/product/[handle]/page.tsx
@@ -72,6 +72,8 @@ export default async function ProductPage({
language: params?.locale?.toUpperCase()
});
+ console.debug({ product });
+
let otherImages: MediaImage[] = [];
if (!!product) {
otherImages = product.images
@@ -111,7 +113,7 @@ export default async function ProductPage({
+
+ {!!product?.galleryIntro?.value && (
+
+
{product.galleryIntro.value}
+
+ )}
+
{!!otherImages &&
otherImages?.length > 0 &&
@@ -181,6 +189,13 @@ export default async function ProductPage({
);
})}
+
+ {!!product?.lower?.value && (
+
+
{product.lower.value}
+
+ )}
+
diff --git a/components/cart/modal.tsx b/components/cart/modal.tsx
index 319da1e39..009ad602e 100644
--- a/components/cart/modal.tsx
+++ b/components/cart/modal.tsx
@@ -14,7 +14,6 @@ import AgeConfirmBeforeCheckout from './age-gate-confirm-before-checkout';
import CloseCart from './close-cart';
import DeleteItemButton from './delete-item-button';
import EditItemQuantityButton from './edit-item-quantity-button';
-import { InlineAddToCart } from './inline-add-to-cart';
import OpenCart from './open-cart';
type MerchandiseSearchParams = {
@@ -157,12 +156,12 @@ export default function CartModal({
);
})}
- {!!promotedItem && (
+ {/* {!!promotedItem && (
- )}
+ )} */}
{/*
Taxes
@@ -172,10 +171,10 @@ export default function CartModal({
currencyCode={cart.cost.totalTaxAmount.currencyCode}
/>
*/}
-
+ {/*
Shipping
Calculated at checkout
-
+
*/}
Total
+
{!!notes ? (
-
-
+
+
tasting notes
+
{notes}
) : null}
{imageUrl && imageHeight && imageWidth && (
diff --git a/components/prose.tsx b/components/prose.tsx
index 249fb4f48..5f9f48372 100644
--- a/components/prose.tsx
+++ b/components/prose.tsx
@@ -11,15 +11,15 @@ const Prose: FunctionComponent
= ({ html, className }) => {