From: charleswrayjr Date: Sat, 13 Sep 2025 07:27:44 +0000 (-0500) Subject: Adding authentication, media, and messaging. X-Git-Url: https://git.phasecustomsoft.com/static/git-favicon.png?a=commitdiff_plain;h=f81d799ff9c572a89be3e574a97d0ed5fa76fdb9;p=phs-admin.git Adding authentication, media, and messaging. --- diff --git a/src/App.js b/src/App.js index 934ef97..5f3e664 100755 --- a/src/App.js +++ b/src/App.js @@ -3,6 +3,7 @@ import AppRoutes from './app/routes'; import React from 'react'; import { SnackbarProvider } from 'notistack'; import { CssBaseline, ThemeProvider, createTheme } from '@mui/material'; +import AppHeader from './app/components/AppHeader'; const theme = createTheme({ palette: { @@ -16,6 +17,7 @@ const App = () => { + diff --git a/src/app/views/Dashboard/Dashboard.jsx b/src/app/views/Dashboard/Dashboard.jsx index 66ad834..e8aa6f1 100755 --- a/src/app/views/Dashboard/Dashboard.jsx +++ b/src/app/views/Dashboard/Dashboard.jsx @@ -22,7 +22,6 @@ const Dashboard = () => { return (
- Welcome to PHS Admin{user ? `, ${user.first_name || 'User ' + user.id}` : ''}