diff --git a/frontend/index.html b/frontend/index.html index 072a57e..d1ee10e 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1,10 +1,10 @@ - + - + - frontend + Placebo.mk - Сатирични вести од Македонија
diff --git a/frontend/public/favicon.png b/frontend/public/favicon.png new file mode 100644 index 0000000..df668a8 Binary files /dev/null and b/frontend/public/favicon.png differ diff --git a/frontend/public/vite.svg b/frontend/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/frontend/src/components/features/live-blog/LiveBlogViewer.tsx b/frontend/src/components/features/live-blog/LiveBlogViewer.tsx index c099305..bc3b24c 100644 --- a/frontend/src/components/features/live-blog/LiveBlogViewer.tsx +++ b/frontend/src/components/features/live-blog/LiveBlogViewer.tsx @@ -223,8 +223,16 @@ export function LiveBlogViewer({ slug, className }: LiveBlogViewerProps) { ) : (
- {updates.map((update) => ( - + {updates.map((update, index) => ( +
+ +
))} {updatesLoading && (
@@ -255,16 +263,19 @@ export function LiveBlogViewer({ slug, className }: LiveBlogViewerProps) { interface LiveBlogUpdateProps { update: ApiLiveBlogUpdate; + alignRight?: boolean; } -function LiveBlogUpdate({ update }: LiveBlogUpdateProps) { +function LiveBlogUpdate({ update, alignRight = false }: LiveBlogUpdateProps) { const isPinned = update.isPinned; return (
{isPinned && (