diff --git a/services/web-ui/src/features/blogs/pages/BlogPostListPage/BlogPostListPage.nav.tsx b/services/web-ui/src/features/blogs/pages/BlogPostListPage/BlogPostListPage.nav.tsx index 1a4ec599..10742aeb 100644 --- a/services/web-ui/src/features/blogs/pages/BlogPostListPage/BlogPostListPage.nav.tsx +++ b/services/web-ui/src/features/blogs/pages/BlogPostListPage/BlogPostListPage.nav.tsx @@ -1,6 +1,10 @@ import { ReactElement, ReactNode } from "react"; +import { Typography } from "@mui/material"; + import { Nav } from "src/components/nav"; +import { CurrentOrganizationAvatar } from "src/components/nav/AppBar/CurrentOrganizationAvatar"; +import { config } from "src/config"; interface BlogPostListPageNavProps { children: ReactNode; @@ -9,5 +13,26 @@ interface BlogPostListPageNavProps { export function BlogPostListPageNav({ children, }: BlogPostListPageNavProps): ReactElement { - return ; + const appBarContent = ( + <> + + + ({ + background: `linear-gradient(to right, ${theme.palette.primary.main}, ${theme.palette.secondary.main})`, + backgroundClip: "text", + color: "transparent", + fontFamily: "sans-serif", + fontWeight: 600, + ml: 3, + textShadow: "1px 1px 1px white", + })} + variant="h5" + > + {config.APP.NAME} + + + ); + + return ; }