Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
Empty file added CHATBOT_GUIDE.md
Empty file.
Empty file added MONGODB_SETUP.md
Empty file.
Empty file added SETUP.md
Empty file.
105 changes: 61 additions & 44 deletions agrilink/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions agrilink/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongodb": "^4.0.7",
Expand All @@ -19,18 +20,18 @@
"lucide-react": "^0.525.0",
"mongodb": "^6.17.0",
"mongoose": "^8.16.1",
"next": "15.3.4",
"next": "^15.3.5",
"next-auth": "^4.24.11",
"nodemailer": "^6.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"recharts": "^3.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "9.30.1",
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
Expand Down
2 changes: 1 addition & 1 deletion agrilink/src/app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';

import { useState, useEffect } from 'react';
import CustomerUserProfile from "../../components/CustomerUserProfile";
import CustomerUserProfile from "../components/CustomerUserProfile";
import { checkAuthAndLogout, CustomerData } from "../../lib/clientAuth";

export default function Products() {
Expand Down
Empty file.
Loading