diff --git a/.gitignore b/.gitignore index 96fab4f..dc13fa3 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,6 @@ yarn-error.log* # Misc .DS_Store *.pem + +# Temp files +/tmp \ No newline at end of file diff --git a/apps/www/components/ui/comparison-traditional.tsx b/apps/www/components/ui/comparison-traditional.tsx index a408e33..27f87d8 100644 --- a/apps/www/components/ui/comparison-traditional.tsx +++ b/apps/www/components/ui/comparison-traditional.tsx @@ -57,15 +57,16 @@ export default function ComparisonTraditional() { -
+ {/* Desktop Layout */} +
{/* Header Row */} -
- - Amical Dictation +
+ + Amical Dictation
-
+
- Mac/Windows Native Dictation + Mac/Windows Native Dictation
{/* Feature Rows */} {features.map((f, i) => ( @@ -89,6 +90,39 @@ export default function ComparisonTraditional() { ))}
+ + {/* Mobile Layout */} +
+ {/* First Column - Amical Dictation */} +
+ + Amical Dictation +
+ {features.map((f, i) => ( +
+ {f.icon} +
+ {f.title} +
{f.description}
+
+
+ ))} + + {/* Second Column - Mac/Windows Native Dictation */} +
+ + Mac/Windows Native Dictation +
+ {features.map((f, i) => ( +
+ {f.negativeIcon} +
+ {f.negativeTitle} +
{f.negativeDescription}
+
+
+ ))} +