base con autenticacion, registro, modulo encuestas
This commit is contained in:
19
apps/web/app/dashboard/estadisticas/encuestas/page.tsx
Normal file
19
apps/web/app/dashboard/estadisticas/encuestas/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import PageContainer from '@/components/layout/page-container';
|
||||
import { SurveyStatistics } from '@/feactures/statistics/components/survey-statistics';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Estadísticas de Encuestas - Fondemi',
|
||||
description: 'Análisis y estadísticas de las encuestas realizadas',
|
||||
};
|
||||
|
||||
export default function SurveyStatisticsPage() {
|
||||
return (
|
||||
<PageContainer>
|
||||
<div className="w-full">
|
||||
<h1 className="text-2xl font-bold mb-6">Estadísticas de Encuestas</h1>
|
||||
<SurveyStatistics />
|
||||
</div>
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user