Added a basic framework for activity logs

This commit is contained in:
Vladyslav Matsiiako
2022-12-15 23:35:52 -05:00
parent 0ef9db99b4
commit 4ad4efe9a5
3 changed files with 212 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import { useEffect, useState } from 'react';
import Link from 'next/link';
import { useRouter } from 'next/router';
import {
faBook,
faBookOpen,
faGear,
faKey,
@@ -150,6 +151,11 @@ export default function Layout({ children }: LayoutProps) {
title: 'Integrations',
emoji: <FontAwesomeIcon icon={faPlug} />
},
{
href: '/activity/' + workspaceMapping[workspaceSelected as any],
title: 'Activity',
emoji: <FontAwesomeIcon icon={faBook} />
},
{
href: '/settings/project/' + workspaceMapping[workspaceSelected as any],
title: 'Project Settings',