cohorta/src/components/focus-group-session/data.ts
Vadym Samoilenko e01569c412
All checks were successful
Deploy to Production / deploy (push) Successful in 2m23s
feat: commit all app changes — billing API, new auth, design overhaul
Includes frontend redesign (Navigation, billingApi), backend updates
(auth routes, admin routes, LLM service refactor), MSAL removal,
and dependency updates.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-23 19:04:43 +01:00

104 lines
3.4 KiB
TypeScript
Executable file

import { FocusGroup, Message, Theme } from './types';
// Sample focus group data
export const sampleFocusGroups: FocusGroup[] = [
{
id: '1',
name: 'Mobile App UX Evaluation',
status: 'in-progress',
participants: [
'1', '2', '4', '5', '7'
],
date: '2023-06-12T15:30:00Z',
duration: 60,
topic: 'user-experience',
discussionGuide: `
# Discussion Guide: Mobile App UX Evaluation
## Introduction (5 minutes)
Welcome to our focus group discussion. Today we'll be exploring your experiences and opinions on our mobile app interface. There are no right or wrong answers, we're just interested in your honest thoughts.
## Warm-up Questions (10 minutes)
Let's start by introducing ourselves and sharing a bit about your daily smartphone usage.
## Navigation Experience Exploration (15 minutes)
Now, let's dive deeper into your experiences with the app navigation. What features do you find most intuitive? What frustrations have you encountered?
## Creative Testing (20 minutes)
We'll now show you some design concepts and get your feedback.
## Conclusion (10 minutes)
To wrap up, I'd like to hear your final thoughts on what we've discussed today and any additional insights you'd like to share.
`
},
{
id: '2',
name: 'Product Feature Feedback',
status: 'in-progress',
participants: [
'1', '4', '5', '7'
],
date: '2023-06-15T10:00:00Z',
duration: 90,
topic: 'product-feedback',
discussionGuide: `
# Discussion Guide: Product Feature Feedback
## Introduction (5 minutes)
Welcome to our focus group discussion. Today we'll be exploring your thoughts on our upcoming product features.
## Warm-up Questions (10 minutes)
Let's start by discussing your current experience with similar products.
## Feature Exploration (30 minutes)
We'll present several feature concepts and gather your feedback on each.
## Prioritization Exercise (15 minutes)
Help us understand which features would be most valuable to you.
## Conclusion (10 minutes)
Final thoughts and summary of the discussion.
`
},
{
id: '3',
name: 'Marketing Campaign Testing',
status: 'in-progress',
participants: [
'2', '4', '7'
],
date: '2023-06-12T15:30:00Z',
duration: 45,
topic: 'creative-testing',
discussionGuide: `
# Discussion Guide: Marketing Campaign Testing
## Introduction (5 minutes)
Welcome everyone. Today we're evaluating some marketing campaign concepts.
## Warm-up (5 minutes)
Brief discussion about marketing campaigns that have caught your attention recently.
## Campaign Concept Review (25 minutes)
We'll review several campaign directions and gather your impressions.
## Message Effectiveness (10 minutes)
Discussion about which messages resonate most strongly and why.
## Conclusion (5 minutes)
Final impressions and recommendations.
`
}
];
// Sample initial messages - REMOVED to prevent boilerplate messages
// All messages should now be AI-generated during focus group sessions
// export const initialMessages: Message[] = [];
// Sample initial themes
export const initialThemes: Theme[] = [
{ id: '1', text: 'Consistency in navigation is highly valued', count: 3, messages: ['9', '10'] },
{ id: '2', text: 'Accessibility of frequent features is important', count: 2, messages: ['8'] },
{ id: '3', text: 'State preservation between screens enhances experience', count: 1, messages: ['10'] },
];