diff --git a/packages/frontend/src/components/projects/project/overview/Activity/Activity.tsx b/packages/frontend/src/components/projects/project/overview/Activity/Activity.tsx
index 38b4d95..da48a71 100644
--- a/packages/frontend/src/components/projects/project/overview/Activity/Activity.tsx
+++ b/packages/frontend/src/components/projects/project/overview/Activity/Activity.tsx
@@ -4,22 +4,33 @@ import { GitCommitWithBranch } from 'types';
import { Heading } from 'components/shared/Heading';
import ActivityCard from './ActivityCard';
import { Button } from 'components/shared/Button';
-import { LoadingIcon } from 'components/shared/CustomIcon';
+import { LoadingIcon, LinkIcon } from 'components/shared/CustomIcon';
+import { Link } from 'react-router-dom';
export const Activity = ({
isLoading,
activities,
+ repoPath,
}: {
isLoading: boolean;
activities: GitCommitWithBranch[];
+ repoPath: string;
}) => {
return (
Activity
-
+
+
+ }
+ >
+ See all
+
+
{isLoading ? (
diff --git a/packages/frontend/src/pages/org-slug/projects/Id.tsx b/packages/frontend/src/pages/org-slug/projects/Id.tsx
index e5b7604..f79e940 100644
--- a/packages/frontend/src/pages/org-slug/projects/Id.tsx
+++ b/packages/frontend/src/pages/org-slug/projects/Id.tsx
@@ -16,6 +16,7 @@ import { ChevronLeft } from 'components/shared/CustomIcon';
import { WavyBorder } from 'components/shared/WavyBorder';
import { Heading } from 'components/shared/Heading';
import { Tabs } from 'components/shared/Tabs';
+import { LinkIcon } from 'components/shared/CustomIcon';
const Id = () => {
const { id } = useParams();
@@ -88,6 +89,9 @@ const Id = () => {
{...buttonSize}
className="h-11 transition-colors"
variant="tertiary"
+ rightIcon={
+
+ }
>
Open repo
diff --git a/packages/frontend/src/pages/org-slug/projects/id/Overview.tsx b/packages/frontend/src/pages/org-slug/projects/id/Overview.tsx
index 4097555..d4e9366 100644
--- a/packages/frontend/src/pages/org-slug/projects/id/Overview.tsx
+++ b/packages/frontend/src/pages/org-slug/projects/id/Overview.tsx
@@ -221,7 +221,11 @@ const OverviewTabPanel = () => {
)}
-
+
);
};