diff --git a/src/components/ProductCard.astro b/src/components/ProductCard.astro index 94209f5..c876fa3 100644 --- a/src/components/ProductCard.astro +++ b/src/components/ProductCard.astro @@ -1,5 +1,5 @@ --- -import { type Product } from '../data/products'; +import { type Product } from '../data/products/product'; import StarRating from './StarRating.astro'; interface Props { @@ -9,21 +9,24 @@ interface Props { const { product } = Astro.props; --- -