├── .DS_Store ├── .gitignore ├── README.md ├── app ├── (auth) │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.jsx │ └── sign-up │ │ └── [[...sign-up]] │ │ └── page.jsx ├── (routes) │ └── dashboard │ │ ├── _components │ │ ├── BarChartDashboard.jsx │ │ ├── CardInfo.jsx │ │ ├── DashboardHeader.jsx │ │ └── SideNav.jsx │ │ ├── budgets │ │ ├── _components │ │ │ ├── BudgetItem.jsx │ │ │ ├── BudgetList.jsx │ │ │ └── CreateBudget.jsx │ │ └── page.jsx │ │ ├── expenses │ │ ├── [id] │ │ │ ├── loading.jsx │ │ │ └── page.jsx │ │ ├── _components │ │ │ ├── AddExpense.jsx │ │ │ ├── EditBudget.jsx │ │ │ └── ExpenseListTable.jsx │ │ └── page.jsx │ │ ├── incomes │ │ ├── _components │ │ │ ├── CreateIncomes.jsx │ │ │ ├── IncomeItem.jsx │ │ │ └── IncomeList.jsx │ │ └── page.jsx │ │ ├── layout.jsx │ │ ├── loading.jsx │ │ ├── page.jsx │ │ └── upgrade │ │ └── page.jsx ├── _components │ ├── Header.jsx │ └── Hero.jsx ├── favicon.ico ├── globals.css ├── layout.js └── page.js ├── components.json ├── components └── ui │ ├── alert-dialog.jsx │ ├── button.jsx │ ├── container-scroll-animation.jsx │ ├── dialog.jsx │ ├── input.jsx │ └── sonner.jsx ├── drizzle.config.js ├── jsconfig.json ├── lib └── utils.js ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── chart-donut.svg ├── dashboard.png ├── logo.svg ├── next.svg └── vercel.svg ├── tailwind.config.js ├── utils ├── cn.js ├── dbConfig.jsx ├── getFinancialAdvice.js ├── index.js └── schema.jsx └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/sign-in/[[...sign-in]]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(auth)/sign-in/[[...sign-in]]/page.jsx -------------------------------------------------------------------------------- /app/(auth)/sign-up/[[...sign-up]]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(auth)/sign-up/[[...sign-up]]/page.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/_components/BarChartDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/_components/BarChartDashboard.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/_components/CardInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/_components/CardInfo.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/_components/DashboardHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/_components/DashboardHeader.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/_components/SideNav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/_components/SideNav.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/budgets/_components/BudgetItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/budgets/_components/BudgetItem.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/budgets/_components/BudgetList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/budgets/_components/BudgetList.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/budgets/_components/CreateBudget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/budgets/_components/CreateBudget.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/budgets/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/budgets/page.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/expenses/[id]/loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/expenses/[id]/loading.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/expenses/[id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/expenses/[id]/page.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/expenses/_components/AddExpense.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/expenses/_components/AddExpense.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/expenses/_components/EditBudget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/expenses/_components/EditBudget.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/expenses/_components/ExpenseListTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/expenses/_components/ExpenseListTable.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/expenses/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/expenses/page.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/incomes/_components/CreateIncomes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/incomes/_components/CreateIncomes.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/incomes/_components/IncomeItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/incomes/_components/IncomeItem.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/incomes/_components/IncomeList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/incomes/_components/IncomeList.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/incomes/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/incomes/page.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/layout.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/loading.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/page.jsx -------------------------------------------------------------------------------- /app/(routes)/dashboard/upgrade/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/(routes)/dashboard/upgrade/page.jsx -------------------------------------------------------------------------------- /app/_components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/_components/Header.jsx -------------------------------------------------------------------------------- /app/_components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/_components/Hero.jsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/app/page.js -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/alert-dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components/ui/alert-dialog.jsx -------------------------------------------------------------------------------- /components/ui/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components/ui/button.jsx -------------------------------------------------------------------------------- /components/ui/container-scroll-animation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components/ui/container-scroll-animation.jsx -------------------------------------------------------------------------------- /components/ui/dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components/ui/dialog.jsx -------------------------------------------------------------------------------- /components/ui/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components/ui/input.jsx -------------------------------------------------------------------------------- /components/ui/sonner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/components/ui/sonner.jsx -------------------------------------------------------------------------------- /drizzle.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/drizzle.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/lib/utils.js -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/chart-donut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/public/chart-donut.svg -------------------------------------------------------------------------------- /public/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/public/dashboard.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /utils/cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/utils/cn.js -------------------------------------------------------------------------------- /utils/dbConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/utils/dbConfig.jsx -------------------------------------------------------------------------------- /utils/getFinancialAdvice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/utils/getFinancialAdvice.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/utils/index.js -------------------------------------------------------------------------------- /utils/schema.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/utils/schema.jsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mendsalbert/ai-finance-tracking/HEAD/yarn.lock --------------------------------------------------------------------------------