diff --git a/attached_assets/image_1772310381166.png b/attached_assets/image_1772310381166.png new file mode 100644 index 0000000..21e5f7e Binary files /dev/null and b/attached_assets/image_1772310381166.png differ diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index fd7fe7d..0f57d43 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -130,6 +130,31 @@ function MediumCard({ article }: { article: Article }) { ); } +function SideCard({ article }: { article: Article }) { + const isVideo = article.category === "Video"; + return ( + +
+
+
+ {article.title} +
+ {isVideo && ( +
+
+ +
+
+ )} +
+
+

{article.title}

+
+
+ + ); +} + function NativeAdCard() { return (
@@ -210,7 +235,7 @@ function FeaturedCarousel({ articles, popular, galleryImages }: { articles: Arti return (
setPaused(true)} onMouseLeave={() => setPaused(false)}>
-
+
{isGalleryPage && galleryImages ? ( ) : hero ? ( @@ -218,9 +243,9 @@ function FeaturedCarousel({ articles, popular, galleryImages }: { articles: Arti ) : null}
{!wide && ( -
+
{side.map((a) => ( - + ))}
)}