diff --git a/src/app/articles/[slug]/ArticleDetailClient.tsx b/src/app/articles/[slug]/ArticleDetailClient.tsx index 32f74d6..e36d012 100644 --- a/src/app/articles/[slug]/ArticleDetailClient.tsx +++ b/src/app/articles/[slug]/ArticleDetailClient.tsx @@ -5,6 +5,7 @@ import AppImage from "@/components/ui/AppImage"; import Header from "@/components/Header"; import Footer from "@/components/Footer"; import SidebarAdStack from "@/components/SidebarAdStack"; +import StarRating from "@/components/StarRating"; import { createClient } from "@/lib/supabase/client"; import type { Article } from "@/lib/articles/types"; @@ -251,6 +252,9 @@ export default function ArticleDetailClient({ article, relatedArticles }: Articl
{article.excerpt}
{/* Article Meta */} @@ -351,13 +355,7 @@ export default function ArticleDetailClient({ article, relatedArticles }: Articl {/* Article Body */} {/* DO NOT OVERRIDE — article body prose styles */} diff --git a/src/app/home-page/components/ArticleFeed.tsx b/src/app/home-page/components/ArticleFeed.tsx index bdda1e5..a596348 100644 --- a/src/app/home-page/components/ArticleFeed.tsx +++ b/src/app/home-page/components/ArticleFeed.tsx @@ -5,6 +5,7 @@ import SidebarAdStack from "@/components/SidebarAdStack"; import AdImage from "@/components/AdImage"; import { rotateAll, type Ad } from "@/lib/ads"; import { PersonIcon, ChevronLeftIcon, ChevronRightIcon, SearchIcon, CloseIcon } from "@/components/ui/Icons"; +import StarRating from "@/components/StarRating"; import Link from "next/link"; const MOBILE_AD_EVERY_N = 4; @@ -626,6 +627,9 @@ export default function ArticleFeed() {{article?.excerpt}
+{article.excerpt}
@@ -448,13 +452,7 @@ export default function NewsArticleDetailClient({