Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 10 additions & 25 deletions src/config/plans.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,19 @@
export const PLANS = {
SINGLE: {
id: 'single',
name: 'Plan Único',
price: 29,
name: 'Beta',
price: 49,
currency: '€',
period: 'mes',
subtitle: 'Todo lo que necesitas para empezar a trabajar con nuestra plataforma.',
features: [
'Feedback de calidad en video y audio',
'Crea análisis en menos de 5 minutos',
'Invita a quien tu quieras',
'Exporta tus análisis fácilmente',
'Soporte por email',
'Feedback cualitativo de calidad en video y audio',
'Análisis ilimitados con tus propios participantes',
'Transcripción con marcas de tiempo con IA',
'Contacto directo con el equipo de producto - Te escuchamos',
'Soporte prioritario - respuesta en menos de 8h',
'RGPD - Alojado en la UE',
]
},
// PREMIUM: {
// id: 'premium',
// name: 'Plan Premium',
// price: 49,
// currency: '€',
// period: 'mes',
// subtitle: 'Para equipos que necesitan más funcionalidades y soporte prioritario.',
// features: [
// 'Proyectos ilimitados',
// 'Exportaciones ilimitadas',
// 'Colaboración con hasta 10 miembros',
// 'Soporte prioritario 24/7',
// 'Historial y auditoría de cambios',
// 'Funciones avanzadas',
// 'Integraciones personalizadas'
// ]
// },
};
};

6 changes: 1 addition & 5 deletions src/pages/index/PricingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ import { PLANS } from '../../config/plans.js';
const PlanCard = ({ plan }) => (
<Card withBorder shadow="sm" radius="md" p="lg" style={{ width: '100%', height: '100%', textAlign: 'center' }}>
<Title order={3} mb="md">{plan.name}</Title>

<Title order={2} mb="xs" style={{ textDecoration: 'line-through', color: '#999' }}>
{plan.price}{plan.currency} / {plan.period}
</Title>


<div style={{ display: 'flex', justifyContent: 'center', width: '100%', marginBottom: '1rem' }}>
<BetaBadge />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/user/CreateAnalysisPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const CreateAnalysisPage = () => {
/>

<Textarea
label="(Opcional) Escenario - Indica el escenario que debe tener simular el participante"
label="(Opcional) Escenario - Indica el escenario que debe simular el participante"
placeholder="Imagina que es el cumpleaños de tu hermano y tienes 250€ para comprar un reloj"
value={scenario}
onChange={(e) => setScenario(e.target.value)}
Expand Down