diff --git a/components/carousel.tsx b/components/carousel.tsx
index 78254d05b..fe1c244d9 100644
--- a/components/carousel.tsx
+++ b/components/carousel.tsx
@@ -1,7 +1,7 @@
import { getCollectionProducts } from 'lib/shopify';
import Image from 'next/image';
import Link from 'next/link';
-import Price from './price';
+import Label from './label';
export async function Carousel() {
// Collections that start with `hidden-*` are hidden from the search page.
@@ -27,16 +27,11 @@ export async function Carousel() {
src={product.featuredImage.url}
/>
) : null}
-
-
- {product.title}
-
-
-
+
))}
diff --git a/components/grid/tile.tsx b/components/grid/tile.tsx
index 12f696fbe..6ddb31a65 100644
--- a/components/grid/tile.tsx
+++ b/components/grid/tile.tsx
@@ -1,7 +1,6 @@
import clsx from 'clsx';
import Image from 'next/image';
-
-import Price from 'components/price';
+import Label from '../label';
export function GridTileImage({
isInteractive = true,
@@ -42,29 +41,13 @@ export function GridTileImage({
/>
) : null}
{labels ? (
-