Update home view

This commit is contained in:
Beingpax 2025-08-25 13:44:02 +05:45
parent ae9c2ab5b2
commit d1f603b5e6
2 changed files with 4 additions and 4 deletions

View File

@ -39,19 +39,19 @@ struct MetricsContent: View {
private var metricsGrid: some View {
LazyVGrid(columns: [GridItem(.flexible()), GridItem(.flexible())], spacing: 20) {
MetricCard(
title: "Words Captured",
title: "Words Dictated",
value: "\(totalWordsTranscribed)",
icon: "text.word.spacing",
color: .blue
)
MetricCard(
title: "Voice-to-Text Sessions",
title: "VoiceInk Sessions",
value: "\(transcriptions.count)",
icon: "mic.circle.fill",
color: .green
)
MetricCard(
title: "Average Words/Minute",
title: "WPM",
value: String(format: "%.1f", averageWordsPerMinute),
icon: "speedometer",
color: .orange

View File

@ -101,7 +101,7 @@ struct TimeEfficiencyView: View {
private var timeSavedView: some View {
VStack(alignment: .leading, spacing: 8) {
Text("TIME SAVED")
Text("YOU'VE SAVED ⏳")
.font(.system(size: 13, weight: .heavy))
.tracking(4)
.foregroundColor(.secondary)