Refactored layout. Added NavBar component.

This commit is contained in:
Mike Cao 2023-01-18 15:05:39 -08:00
parent fad38dc180
commit 1d9c3133f0
56 changed files with 601 additions and 429 deletions

View file

@ -1,10 +1,10 @@
import SettingsLayout from 'components/pages/settings/SettingsLayout';
import AppLayout from 'components/layout/AppLayout';
import ProfileSettings from 'components/pages/settings/profile/ProfileSettings';
export default function ProfilePage() {
return (
<SettingsLayout>
<AppLayout>
<ProfileSettings />
</SettingsLayout>
</AppLayout>
);
}