base con autenticacion, registro, modulo encuestas
This commit is contained in:
17
apps/web/app/dashboard/profile/page.tsx
Normal file
17
apps/web/app/dashboard/profile/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import PageContainer from "@/components/layout/page-container";
|
||||
import {Profile} from '@/feactures/users/components/user-profile'
|
||||
|
||||
|
||||
export default function ProfilePage() {
|
||||
|
||||
return (
|
||||
<PageContainer>
|
||||
<div className="w-full">
|
||||
<h1 className="text-2xl font-bold">Perfil</h1>
|
||||
<p className="text-muted-foreground mb-6">Aquí puede ver y editar sus datos de perfil</p>
|
||||
<Profile />
|
||||
</div>
|
||||
</PageContainer>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user