diff --git a/client/public/uploads/saso-avsenik.jpg b/client/public/uploads/saso-avsenik.jpg
new file mode 100644
index 0000000..f9c11ef
Binary files /dev/null and b/client/public/uploads/saso-avsenik.jpg differ
diff --git a/client/src/pages/category.tsx b/client/src/pages/category.tsx
index 3033216..b8a99c5 100644
--- a/client/src/pages/category.tsx
+++ b/client/src/pages/category.tsx
@@ -4,7 +4,6 @@ import { type Article } from "@shared/schema";
import { format } from "date-fns";
import { de } from "date-fns/locale";
import { Eye, ArrowLeft } from "lucide-react";
-import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Skeleton } from "@/components/ui/skeleton";
import Header from "@/components/header";
@@ -62,9 +61,6 @@ export default function CategoryPage() {
loading="lazy"
/>
-
- {article.category}
-
diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx
index bd6af61..ccf9b16 100644
--- a/client/src/pages/home.tsx
+++ b/client/src/pages/home.tsx
@@ -4,7 +4,6 @@ import { type Article } from "@shared/schema";
import { format } from "date-fns";
import { de } from "date-fns/locale";
import { Eye, Clock } from "lucide-react";
-import { Badge } from "@/components/ui/badge";
import { Skeleton } from "@/components/ui/skeleton";
import { Button } from "@/components/ui/button";
import Header from "@/components/header";
@@ -33,9 +32,6 @@ function FeaturedSection({ articles }: { articles: Article[] }) {
loading="lazy"
/>
-
- {hero.category}
-
{format(new Date(hero.publishedAt), "d. MMMM yyyy", { locale: de })}
@@ -66,9 +62,6 @@ function FeaturedSection({ articles }: { articles: Article[] }) {
loading="lazy"
/>
-
- {article.category}
-
{format(new Date(article.publishedAt), "d. MMMM yyyy", { locale: de })}
@@ -103,9 +96,6 @@ function ArticleCard({ article }: { article: Article }) {
loading="lazy"
/>
-
- {article.category}
-