hey guys i am new to medusa, can you help me out, after installing medusa starter template i am not getting featured products in the "/" route, how i suppose to take a action on that, (its a next.js ecommerce starter template)
code for featured product component
`import { HttpTypes } from "@medusajs/types"
import ProductRail from "@modules/home/components/featured-products/product-rail"
export default async function FeaturedProducts({
collections,
region,
}: {
collections: HttpTypes.StoreCollection[]
region: HttpTypes.StoreRegion
}) {
return collections.map((collection) => (
<li key={collection.id}>
<ProductRail collection={collection} region={region} />
</li>
))
}
`