diff --git a/resources/js/components/onboarding/step-category-types.tsx b/resources/js/components/onboarding/step-category-types.tsx index aa781f45..31718078 100644 --- a/resources/js/components/onboarding/step-category-types.tsx +++ b/resources/js/components/onboarding/step-category-types.tsx @@ -11,7 +11,7 @@ const categoryTypes = [ type: 'expense', name: 'Expense', icon: ArrowUpRight, - description: 'Money going out', + description: 'Money going out of an account to pay for something (e.g., groceries, rent, subscriptions). Decreases your balance.', examples: ['Food', 'Rent', 'Entertainment', 'Transport'], color: 'from-red-500 to-rose-500', bgColor: 'bg-red-50 dark:bg-red-900/20', @@ -21,7 +21,7 @@ const categoryTypes = [ type: 'income', name: 'Income', icon: ArrowDownLeft, - description: 'Money coming in', + description: 'Money coming into an account from a source (e.g., salary, refunds, interest). Increases your balance.', examples: ['Salary', 'Freelance', 'Investments', 'Refunds'], color: 'from-emerald-500 to-green-500', bgColor: 'bg-emerald-50 dark:bg-emerald-900/20', @@ -31,7 +31,7 @@ const categoryTypes = [ type: 'transfer', name: 'Transfer', icon: Repeat, - description: 'Moving money between accounts', + description: 'Moving money between accounts. It does not count in expenses or income charts.', examples: ['To savings', 'Credit card payment', 'Between banks'], color: 'from-blue-500 to-cyan-500', bgColor: 'bg-blue-50 dark:bg-blue-900/20', @@ -46,48 +46,33 @@ export function StepCategoryTypes({ onContinue }: StepCategoryTypesProps) { icon={Tag} iconContainerClassName="bg-gradient-to-br from-violet-400 to-purple-500" title="Understanding Categories" - description="Categories help you organize and understand your spending. Every transaction belongs to one of three types:" + description="Every transaction belongs to one of three types:" />
+ +
{category.description}
-- Tip: We've already set up 50+ common - categories for you. You can customize them in the next step - or anytime from settings. -
-Create rules like "If description contains 'AMAZON', categorize as Shopping" @@ -29,10 +31,12 @@ export function StepSmartRules({ onContinue }: StepSmartRulesProps) {
Rules apply automatically when you import new transactions @@ -40,11 +44,8 @@ export function StepSmartRules({ onContinue }: StepSmartRulesProps) {