@@ -14,37 +14,36 @@ function Component() {
1414 < main className = "container mx-auto pb-16 px-4 max-w-5xl overflow-hidden" >
1515 < div className = "grid grid-cols-2 gap-4" >
1616 < PricingCard
17- title = "Local "
18- description = "For local AI enthusiasts "
17+ title = "Free "
18+ description = "Core experience "
1919 buttonText = "Current Plan"
2020 buttonVariant = "outline"
2121 features = { [
22- "100% private, local data " ,
23- "Distraction-free editor " ,
24- "Full AI model control " ,
25- "Realtime conversation to notes " ,
26- "Customizable with extensions " ,
27- "Chat with your note " ,
28- "Meeting reminders " ,
29- "No cloud required " ,
22+ "100% local" ,
23+ "Speaker identification " ,
24+ "Transcript editing " ,
25+ "Basic summarization " ,
26+ "Showing upcoming events " ,
27+ "Adding tags to notes " ,
28+ "Search with your note " ,
29+ "Push notifications " ,
3030 ] }
3131 className = "relative border border-primary/10 shadow-sm hover:shadow-md transition-all duration-300 text-white"
3232 />
3333
3434 < PricingCard
3535 title = "Pro"
36- description = "For professional use and teams "
36+ description = "For individual professionals "
3737 buttonText = "Join Waitlist"
3838 buttonVariant = "default"
3939 features = { [
40- "All Local features" ,
41- "Premium cloud AI models" ,
42- "Speaker detection" ,
43- "Chat across your workspace" ,
44- "Team sharing & collaboration" ,
45- "Custom storage options" ,
46- "Advanced team features" ,
47- "Priority support" ,
40+ "All Free features" ,
41+ "Bespoke on-device models" ,
42+ "Custom API endpoints for AI models" ,
43+ "Customizable summary formats" ,
44+ "Automatic recording control" ,
45+ "Toggle between local & cloud AI" ,
46+ "Chat with multiple notes" ,
4847 ] }
4948 className = "relative text-white border border-primary/30 shadow-lg hover:shadow-xl transition-all duration-300"
5049 />
@@ -76,7 +75,7 @@ function PricingCard({
7675 className,
7776 secondaryAction,
7877} : PricingCardProps ) {
79- const isLocalPlan = title === "Local " ;
78+ const isLocalPlan = title === "Free " ;
8079 const bgImage = isLocalPlan ? "/assets/bg-local-card.jpg" : "/assets/bg-pro-card.jpg" ;
8180
8281 return (
0 commit comments