diff --git a/client/pages/SubscriptionsPage.jsx b/client/pages/SubscriptionsPage.jsx
index 274c712..c01e613 100644
--- a/client/pages/SubscriptionsPage.jsx
+++ b/client/pages/SubscriptionsPage.jsx
@@ -35,6 +35,10 @@ const TYPE_LABELS = {
gaming: 'Gaming',
utilities: 'Utilities',
insurance: 'Insurance',
+ food: 'Food',
+ education: 'Education',
+ shopping: 'Shopping',
+ security: 'Security',
other: 'Other',
};
@@ -45,12 +49,12 @@ function cycleLabel(item) {
function StatCard({ icon: Icon, label, value, hint }) {
return (
-
+
- {label}
+ {label}
-
{value}
+
{value}
{hint &&
{hint}
}
);
@@ -59,7 +63,8 @@ function StatCard({ icon: Icon, label, value, hint }) {
function SubscriptionRow({ item, onEdit, onToggle }) {
return (
@@ -67,7 +72,7 @@ function SubscriptionRow({ item, onEdit, onToggle }) {
@@ -88,7 +93,7 @@ function SubscriptionRow({ item, onEdit, onToggle }) {
-
+
Per cycle
{fmt(item.expected_amount)}
@@ -99,15 +104,18 @@ function SubscriptionRow({ item, onEdit, onToggle }) {
-
-