diff --git a/app/components/product/ProductDetailView.tsx b/app/components/product/ProductDetailView.tsx
index 430725a..25fa53c 100644
--- a/app/components/product/ProductDetailView.tsx
+++ b/app/components/product/ProductDetailView.tsx
@@ -16,6 +16,7 @@ import { Button } from "../ui/button";
import { useNavigate, Link } from "@remix-run/react";
import { useSimilarProductsInfinite } from "~/requestHandler/use-product-hooks";
import MondrianProductList from "../MondrianProductList";
+import SellerLogo from "../SellerLogo";
interface ProductDetailViewProps {
product: ProductDetailType;
@@ -243,6 +244,22 @@ export const ProductDetailView = memo(function ProductDetailView({
{/* Info */}
+ {/* Seller (desktop) */}
+ {!isOwner && product.seller?.username ? (
+
+
+
+ {product.seller.username}
+
+
+ ) : null}
{/* Inactive Product Status */}
{!productActiveStatus && isOwner ? (
diff --git a/app/routes/collection.$id.tsx b/app/routes/collection.$id.tsx
index 6002fb2..425dc42 100644
--- a/app/routes/collection.$id.tsx
+++ b/app/routes/collection.$id.tsx
@@ -141,14 +141,14 @@ export default function CollectionDetail() {
{/* Content */}
{/* Collection Header */}
-
+
{/* Cover Image */}
-
+
{collection.coverImageUrl ? (

) : (