diff --git a/app/components/Profile/Profile.Activity.tsx b/app/components/Profile/Profile.Activity.tsx
new file mode 100644
index 0000000..c1fb60b
--- /dev/null
+++ b/app/components/Profile/Profile.Activity.tsx
@@ -0,0 +1,49 @@
+"use client";
+import { Card } from "flowbite-react";
+import Link from "next/link";
+import { numberDeclension } from "#/api/utils";
+
+export function ProfileActivity(props: {
+ profile_id: number;
+ commentCount: number;
+ videoCount: number;
+ collectionCount: number;
+ friendsCount: number;
+}) {
+ return (
+
+ {props.commentCount}{" "}
+ {numberDeclension(
+ props.commentCount,
+ "комментарий",
+ "комментария",
+ "комментариев"
+ )}
+ {props.videoCount} видео
+ {props.collectionCount}{" "}
+ {numberDeclension(
+ props.commentCount,
+ "коллекция",
+ "коллекции",
+ "коллекций"
+ )}
+
+ {props.friendsCount}{" "}
+ {numberDeclension(props.commentCount, "друзей", "друга", "друзей")}
+ Активность
+