added profile update page

This commit is contained in:
Ren Amamiya
2023-02-24 15:06:48 +07:00
parent 745c9141a0
commit 35c50ced5f
6 changed files with 314 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import BaseLayout from '@layouts/baseLayout';
import UserLayout from '@layouts/userLayout';
import NewsFeedLayout from '@layouts/newsfeedLayout';
import { Placeholder } from '@components/note/placeholder';
import { Thread } from '@components/thread';
@@ -48,7 +48,7 @@ Page.getLayout = function getLayout(
) {
return (
<BaseLayout>
<UserLayout>{page}</UserLayout>
<NewsFeedLayout>{page}</NewsFeedLayout>
</BaseLayout>
);
};