feat(ApiKeysPage): add Header component to the ApiKeysPage for consistent layout and navigation

The Header component is added to the ApiKeysPage to provide a consistent layout and navigation across the application. This will improve the user experience and make it easier for users to navigate between different pages.
This commit is contained in:
anovazzi1 2023-08-22 16:17:47 -03:00
commit 99407c2617

View file

@ -18,6 +18,7 @@ import SecretKeyModal from "../../modals/SecretKeyModal";
import moment from "moment";
import { ApiKey } from "../../types/components";
import Header from "../../components/headerComponent";
export default function ApiKeysPage() {
const [loadingKeys, setLoadingKeys] = useState(true);
@ -80,6 +81,7 @@ export default function ApiKeysPage() {
return (
<>
<Header></Header>
{userData && (
<div className="main-page-panel">
<div className="m-auto flex h-full flex-row justify-center">