diff --git a/app/components/Profile/Profile.Actions.tsx b/app/components/Profile/Profile.Actions.tsx
new file mode 100644
index 0000000..d8c695b
--- /dev/null
+++ b/app/components/Profile/Profile.Actions.tsx
@@ -0,0 +1,25 @@
+"use client";
+import { Card, Button } from "flowbite-react";
+import { useRouter } from "next/navigation";
+
+export const ProfileActions = (props: {
+ isMyProfile: boolean;
+ isFriendRequestsDisallowed: boolean;
+ profile_id: number;
+}) => {
+ return (
+
+
+ {props.isMyProfile && }
+ {!props.isMyProfile && (
+ <>
+ {!props.isFriendRequestsDisallowed && (
+
+ )}
+
+ >
+ )}
+
+
+ );
+};
diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx
index d78fc8c..f0f304c 100644
--- a/app/pages/Profile.tsx
+++ b/app/pages/Profile.tsx
@@ -11,6 +11,7 @@ import { ProfilePrivacyBanner } from "#/components/Profile/Profile.PrivacyBanner
import { ProfileActivity } from "#/components/Profile/Profile.Activity";
import { ProfileStats } from "#/components/Profile/Profile.Stats";
import { ProfileWatchDynamic } from "#/components/Profile/Profile.WatchDynamic";
+import { ProfileActions } from "#/components/Profile/Profile.Actions";
export const ProfilePage = (props: any) => {
const authUser = useUserStore((state) => state);
@@ -98,7 +99,11 @@ export const ProfilePage = (props: any) => {
@@ -135,6 +140,17 @@ export const ProfilePage = (props: any) => {
/>
)}
+
{!user.is_stats_hidden && (
<>