├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── greetings.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── backend ├── .eslintrc.json ├── .gitignore ├── .vscode │ └── settings.json ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── models │ │ ├── cart.js │ │ ├── comment.js │ │ ├── millet_item.js │ │ └── user.js │ ├── routes │ │ ├── admin.js │ │ ├── auth.js │ │ ├── cart.js │ │ ├── list.js │ │ ├── profile.js │ │ └── search.js │ ├── startup │ │ ├── db.js │ │ └── routes.js │ ├── swagger_output.json │ └── utils │ │ ├── hashUtil.js │ │ ├── logger.js │ │ ├── response.js │ │ └── swagger.js ├── test │ ├── index.js │ ├── models │ │ ├── cart.js │ │ └── comment.js │ ├── response.js │ ├── routes │ │ └── list.js │ └── utils │ │ ├── db.js │ │ ├── db_helper.js │ │ ├── endpoints.js │ │ └── tester.js └── vercel.json ├── docs ├── CONTRIBUTING.md └── STYLING.md ├── frontend ├── flutter │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── agro_millets │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ ├── fonts │ │ │ └── Sriracha-Regular.ttf │ │ ├── logo.png │ │ ├── logo_app.png │ │ ├── map_icon.png │ │ ├── map_marker.png │ │ └── translations │ │ │ ├── en.json │ │ │ └── hi.json │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-50x50@1x.png │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── colors.dart │ │ ├── core │ │ │ ├── admin │ │ │ │ ├── application │ │ │ │ │ ├── admin_apis.dart │ │ │ │ │ ├── admin_manager.dart │ │ │ │ │ └── admin_provider.dart │ │ │ │ └── presentation │ │ │ │ │ ├── admin_page.dart │ │ │ │ │ ├── products_page.dart │ │ │ │ │ └── users_page.dart │ │ │ ├── auth │ │ │ │ ├── application │ │ │ │ │ ├── auth.dart │ │ │ │ │ └── location_service.dart │ │ │ │ └── presentation │ │ │ │ │ ├── additional_details_page.dart │ │ │ │ │ ├── login_page.dart │ │ │ │ │ └── signup_page.dart │ │ │ ├── cart │ │ │ │ ├── application │ │ │ │ │ ├── cart_manager.dart │ │ │ │ │ └── cart_provider.dart │ │ │ │ └── presentation │ │ │ │ │ └── cart_page.dart │ │ │ ├── home │ │ │ │ ├── application │ │ │ │ │ ├── comment_manager.dart │ │ │ │ │ ├── comment_provider.dart │ │ │ │ │ ├── home_manager.dart │ │ │ │ │ └── home_provider.dart │ │ │ │ └── presentation │ │ │ │ │ ├── add_item │ │ │ │ │ └── add_item.dart │ │ │ │ │ ├── detail │ │ │ │ │ ├── item_detail.dart │ │ │ │ │ └── item_fullview.dart │ │ │ │ │ ├── home_page.dart │ │ │ │ │ ├── profile │ │ │ │ │ ├── farm_profile.dart │ │ │ │ │ └── user_profile.dart │ │ │ │ │ └── widgets │ │ │ │ │ ├── agro_grid_view.dart │ │ │ │ │ ├── agro_item.dart │ │ │ │ │ ├── cart_bar.dart │ │ │ │ │ ├── drawer.dart │ │ │ │ │ ├── loading_widget.dart │ │ │ │ │ └── shimmer_agro_item.dart │ │ │ ├── map │ │ │ │ ├── application │ │ │ │ │ ├── map_manager.dart │ │ │ │ │ └── map_provider.dart │ │ │ │ └── presentation │ │ │ │ │ └── map_view.dart │ │ │ └── search │ │ │ │ ├── application │ │ │ │ └── search_manager.dart │ │ │ │ └── presentation │ │ │ │ └── search_page.dart │ │ ├── data │ │ │ ├── app_state_repository.dart │ │ │ ├── auth_state_repository.dart │ │ │ └── cache │ │ │ │ └── app_cache.dart │ │ ├── globals.dart │ │ ├── main.dart │ │ ├── models │ │ │ ├── cart_item.dart │ │ │ ├── comment.dart │ │ │ ├── millet_item.dart │ │ │ └── user.dart │ │ ├── secrets.dart │ │ ├── splash.dart │ │ ├── utils │ │ │ ├── firebase_storage.dart │ │ │ └── router.dart │ │ └── widgets │ │ │ ├── action_button.dart │ │ │ ├── custom_text_field.dart │ │ │ ├── temp.json │ │ │ └── text │ │ │ └── large_text.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart └── react │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── _redirects │ ├── github-mark.png │ ├── landing_bg.webp │ └── logo.png │ ├── src │ ├── assets │ │ ├── about_img.webp │ │ ├── about_img_2.webp │ │ ├── about_img_3.webp │ │ ├── error.png │ │ ├── explore.webp │ │ ├── farm.webp │ │ ├── icons │ │ │ ├── female.svg │ │ │ └── male.svg │ │ └── logo.png │ ├── components │ │ ├── Button.jsx │ │ ├── ButtonLoader.jsx │ │ ├── Footer.jsx │ │ ├── ImageView.jsx │ │ ├── Loading.jsx │ │ ├── NavBar │ │ │ └── NavBar.jsx │ │ ├── QueryError.jsx │ │ ├── ShimmerShopItem.jsx │ │ └── ShopItem.jsx │ ├── data │ │ ├── AppState.js │ │ └── data.jsx │ ├── hooks │ │ ├── ProfileHook.js │ │ └── ShopItemHook.js │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── About │ │ │ └── presentation │ │ │ │ └── about.jsx │ │ ├── AddItem │ │ │ ├── application │ │ │ │ └── functions.js │ │ │ └── presentation │ │ │ │ └── AddItem.jsx │ │ ├── Auth │ │ │ ├── application │ │ │ │ └── auth.js │ │ │ └── presentation │ │ │ │ ├── Login.jsx │ │ │ │ ├── SignUp.jsx │ │ │ │ └── components │ │ │ │ ├── GLoginButton.jsx │ │ │ │ └── PasswordField.jsx │ │ ├── Cart │ │ │ ├── application │ │ │ │ ├── cart.js │ │ │ │ └── cart_event.js │ │ │ └── presentation │ │ │ │ └── Cart.jsx │ │ ├── Error.jsx │ │ ├── Landing │ │ │ └── presentation │ │ │ │ └── Landing.jsx │ │ ├── Profile │ │ │ ├── application │ │ │ │ └── profile.js │ │ │ └── presentation │ │ │ │ ├── FarmerProfile.jsx │ │ │ │ ├── Profile.jsx │ │ │ │ ├── UpdateModal.jsx │ │ │ │ └── pattern.css │ │ ├── Search │ │ │ ├── application │ │ │ │ └── search.js │ │ │ └── presentation │ │ │ │ └── Search.jsx │ │ └── shop │ │ │ ├── application │ │ │ ├── shop.js │ │ │ └── shop_model.js │ │ │ └── presentation │ │ │ ├── DetailShimmer.jsx │ │ │ ├── ItemDetail.jsx │ │ │ └── Shop.jsx │ ├── routes.jsx │ ├── types │ │ ├── cart.js │ │ └── item.js │ └── utils │ │ └── cn.jsx │ ├── tailwind.config.cjs │ └── vite.config.js └── images ├── farm.jpg ├── farmer.jpg ├── farmhouse.jpg ├── field.jpg ├── footer.png ├── freshnest_banner_2.png ├── freshnest_banner_3.png ├── header.png └── logo.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/README.md -------------------------------------------------------------------------------- /backend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/.eslintrc.json -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/.vscode/settings.json -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/models/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/models/cart.js -------------------------------------------------------------------------------- /backend/src/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/models/comment.js -------------------------------------------------------------------------------- /backend/src/models/millet_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/models/millet_item.js -------------------------------------------------------------------------------- /backend/src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/models/user.js -------------------------------------------------------------------------------- /backend/src/routes/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/routes/admin.js -------------------------------------------------------------------------------- /backend/src/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/routes/auth.js -------------------------------------------------------------------------------- /backend/src/routes/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/routes/cart.js -------------------------------------------------------------------------------- /backend/src/routes/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/routes/list.js -------------------------------------------------------------------------------- /backend/src/routes/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/routes/profile.js -------------------------------------------------------------------------------- /backend/src/routes/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/routes/search.js -------------------------------------------------------------------------------- /backend/src/startup/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/startup/db.js -------------------------------------------------------------------------------- /backend/src/startup/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/startup/routes.js -------------------------------------------------------------------------------- /backend/src/swagger_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/swagger_output.json -------------------------------------------------------------------------------- /backend/src/utils/hashUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/utils/hashUtil.js -------------------------------------------------------------------------------- /backend/src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/utils/logger.js -------------------------------------------------------------------------------- /backend/src/utils/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/utils/response.js -------------------------------------------------------------------------------- /backend/src/utils/swagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/src/utils/swagger.js -------------------------------------------------------------------------------- /backend/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/index.js -------------------------------------------------------------------------------- /backend/test/models/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/models/cart.js -------------------------------------------------------------------------------- /backend/test/models/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/models/comment.js -------------------------------------------------------------------------------- /backend/test/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/response.js -------------------------------------------------------------------------------- /backend/test/routes/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/routes/list.js -------------------------------------------------------------------------------- /backend/test/utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/utils/db.js -------------------------------------------------------------------------------- /backend/test/utils/db_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/utils/db_helper.js -------------------------------------------------------------------------------- /backend/test/utils/endpoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/utils/endpoints.js -------------------------------------------------------------------------------- /backend/test/utils/tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/test/utils/tester.js -------------------------------------------------------------------------------- /backend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/backend/vercel.json -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/STYLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/docs/STYLING.md -------------------------------------------------------------------------------- /frontend/flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/.gitignore -------------------------------------------------------------------------------- /frontend/flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/.metadata -------------------------------------------------------------------------------- /frontend/flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/README.md -------------------------------------------------------------------------------- /frontend/flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/analysis_options.yaml -------------------------------------------------------------------------------- /frontend/flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/.gitignore -------------------------------------------------------------------------------- /frontend/flutter/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/build.gradle -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/kotlin/com/example/agro_millets/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/kotlin/com/example/agro_millets/MainActivity.kt -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /frontend/flutter/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /frontend/flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/build.gradle -------------------------------------------------------------------------------- /frontend/flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/gradle.properties -------------------------------------------------------------------------------- /frontend/flutter/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /frontend/flutter/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/android/settings.gradle -------------------------------------------------------------------------------- /frontend/flutter/assets/fonts/Sriracha-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/assets/fonts/Sriracha-Regular.ttf -------------------------------------------------------------------------------- /frontend/flutter/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/assets/logo.png -------------------------------------------------------------------------------- /frontend/flutter/assets/logo_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/assets/logo_app.png -------------------------------------------------------------------------------- /frontend/flutter/assets/map_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/assets/map_icon.png -------------------------------------------------------------------------------- /frontend/flutter/assets/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/assets/map_marker.png -------------------------------------------------------------------------------- /frontend/flutter/assets/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/assets/translations/en.json -------------------------------------------------------------------------------- /frontend/flutter/assets/translations/hi.json: -------------------------------------------------------------------------------- 1 | { 2 | "login": "लॉग इन" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/.gitignore -------------------------------------------------------------------------------- /frontend/flutter/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /frontend/flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /frontend/flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/ios/Runner/Info.plist -------------------------------------------------------------------------------- /frontend/flutter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /frontend/flutter/lib/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/colors.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/admin/application/admin_apis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/admin/application/admin_apis.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/admin/application/admin_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/admin/application/admin_manager.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/admin/application/admin_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/admin/application/admin_provider.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/admin/presentation/admin_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/admin/presentation/admin_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/admin/presentation/products_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/admin/presentation/products_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/admin/presentation/users_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/admin/presentation/users_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/auth/application/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/auth/application/auth.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/auth/application/location_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/auth/application/location_service.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/auth/presentation/additional_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/auth/presentation/additional_details_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/auth/presentation/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/auth/presentation/login_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/auth/presentation/signup_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/auth/presentation/signup_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/cart/application/cart_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/cart/application/cart_manager.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/cart/application/cart_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/cart/application/cart_provider.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/cart/presentation/cart_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/cart/presentation/cart_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/application/comment_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/application/comment_manager.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/application/comment_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/application/comment_provider.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/application/home_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/application/home_manager.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/application/home_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/application/home_provider.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/add_item/add_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/add_item/add_item.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/detail/item_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/detail/item_detail.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/detail/item_fullview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/detail/item_fullview.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/home_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/profile/farm_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/profile/farm_profile.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/profile/user_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/profile/user_profile.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/widgets/agro_grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/widgets/agro_grid_view.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/widgets/agro_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/widgets/agro_item.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/widgets/cart_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/widgets/cart_bar.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/widgets/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/widgets/drawer.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/widgets/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/widgets/loading_widget.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/home/presentation/widgets/shimmer_agro_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/home/presentation/widgets/shimmer_agro_item.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/map/application/map_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/map/application/map_manager.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/map/application/map_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/map/application/map_provider.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/map/presentation/map_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/map/presentation/map_view.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/search/application/search_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/search/application/search_manager.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/core/search/presentation/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/core/search/presentation/search_page.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/data/app_state_repository.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/flutter/lib/data/auth_state_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/data/auth_state_repository.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/data/cache/app_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/data/cache/app_cache.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/globals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/globals.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/main.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/models/cart_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/models/cart_item.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/models/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/models/comment.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/models/millet_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/models/millet_item.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/models/user.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/secrets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/secrets.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/splash.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/utils/firebase_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/utils/firebase_storage.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/utils/router.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/flutter/lib/widgets/action_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/widgets/action_button.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/widgets/custom_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/widgets/custom_text_field.dart -------------------------------------------------------------------------------- /frontend/flutter/lib/widgets/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/widgets/temp.json -------------------------------------------------------------------------------- /frontend/flutter/lib/widgets/text/large_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/lib/widgets/text/large_text.dart -------------------------------------------------------------------------------- /frontend/flutter/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/pubspec.lock -------------------------------------------------------------------------------- /frontend/flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/pubspec.yaml -------------------------------------------------------------------------------- /frontend/flutter/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/flutter/test/widget_test.dart -------------------------------------------------------------------------------- /frontend/react/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/.eslintrc.json -------------------------------------------------------------------------------- /frontend/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/.gitignore -------------------------------------------------------------------------------- /frontend/react/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/.prettierrc -------------------------------------------------------------------------------- /frontend/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/README.md -------------------------------------------------------------------------------- /frontend/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/index.html -------------------------------------------------------------------------------- /frontend/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/package-lock.json -------------------------------------------------------------------------------- /frontend/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/package.json -------------------------------------------------------------------------------- /frontend/react/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/react/public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /frontend/react/public/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/public/github-mark.png -------------------------------------------------------------------------------- /frontend/react/public/landing_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/public/landing_bg.webp -------------------------------------------------------------------------------- /frontend/react/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/public/logo.png -------------------------------------------------------------------------------- /frontend/react/src/assets/about_img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/about_img.webp -------------------------------------------------------------------------------- /frontend/react/src/assets/about_img_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/about_img_2.webp -------------------------------------------------------------------------------- /frontend/react/src/assets/about_img_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/about_img_3.webp -------------------------------------------------------------------------------- /frontend/react/src/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/error.png -------------------------------------------------------------------------------- /frontend/react/src/assets/explore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/explore.webp -------------------------------------------------------------------------------- /frontend/react/src/assets/farm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/farm.webp -------------------------------------------------------------------------------- /frontend/react/src/assets/icons/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/icons/female.svg -------------------------------------------------------------------------------- /frontend/react/src/assets/icons/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/icons/male.svg -------------------------------------------------------------------------------- /frontend/react/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/assets/logo.png -------------------------------------------------------------------------------- /frontend/react/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/Button.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/ButtonLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/ButtonLoader.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/Footer.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/ImageView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/ImageView.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/Loading.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/NavBar/NavBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/NavBar/NavBar.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/QueryError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/QueryError.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/ShimmerShopItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/ShimmerShopItem.jsx -------------------------------------------------------------------------------- /frontend/react/src/components/ShopItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/components/ShopItem.jsx -------------------------------------------------------------------------------- /frontend/react/src/data/AppState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/data/AppState.js -------------------------------------------------------------------------------- /frontend/react/src/data/data.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/data/data.jsx -------------------------------------------------------------------------------- /frontend/react/src/hooks/ProfileHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/hooks/ProfileHook.js -------------------------------------------------------------------------------- /frontend/react/src/hooks/ShopItemHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/hooks/ShopItemHook.js -------------------------------------------------------------------------------- /frontend/react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/index.css -------------------------------------------------------------------------------- /frontend/react/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/main.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/About/presentation/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/About/presentation/about.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/AddItem/application/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/AddItem/application/functions.js -------------------------------------------------------------------------------- /frontend/react/src/pages/AddItem/presentation/AddItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/AddItem/presentation/AddItem.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Auth/application/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Auth/application/auth.js -------------------------------------------------------------------------------- /frontend/react/src/pages/Auth/presentation/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Auth/presentation/Login.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Auth/presentation/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Auth/presentation/SignUp.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Auth/presentation/components/GLoginButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Auth/presentation/components/GLoginButton.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Auth/presentation/components/PasswordField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Auth/presentation/components/PasswordField.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Cart/application/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Cart/application/cart.js -------------------------------------------------------------------------------- /frontend/react/src/pages/Cart/application/cart_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Cart/application/cart_event.js -------------------------------------------------------------------------------- /frontend/react/src/pages/Cart/presentation/Cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Cart/presentation/Cart.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Error.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Landing/presentation/Landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Landing/presentation/Landing.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Profile/application/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Profile/application/profile.js -------------------------------------------------------------------------------- /frontend/react/src/pages/Profile/presentation/FarmerProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Profile/presentation/FarmerProfile.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Profile/presentation/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Profile/presentation/Profile.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Profile/presentation/UpdateModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Profile/presentation/UpdateModal.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/Profile/presentation/pattern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Profile/presentation/pattern.css -------------------------------------------------------------------------------- /frontend/react/src/pages/Search/application/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Search/application/search.js -------------------------------------------------------------------------------- /frontend/react/src/pages/Search/presentation/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/Search/presentation/Search.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/shop/application/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/shop/application/shop.js -------------------------------------------------------------------------------- /frontend/react/src/pages/shop/application/shop_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/shop/application/shop_model.js -------------------------------------------------------------------------------- /frontend/react/src/pages/shop/presentation/DetailShimmer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/shop/presentation/DetailShimmer.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/shop/presentation/ItemDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/shop/presentation/ItemDetail.jsx -------------------------------------------------------------------------------- /frontend/react/src/pages/shop/presentation/Shop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/pages/shop/presentation/Shop.jsx -------------------------------------------------------------------------------- /frontend/react/src/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/routes.jsx -------------------------------------------------------------------------------- /frontend/react/src/types/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/types/cart.js -------------------------------------------------------------------------------- /frontend/react/src/types/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/types/item.js -------------------------------------------------------------------------------- /frontend/react/src/utils/cn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/src/utils/cn.jsx -------------------------------------------------------------------------------- /frontend/react/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/react/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/frontend/react/vite.config.js -------------------------------------------------------------------------------- /images/farm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/farm.jpg -------------------------------------------------------------------------------- /images/farmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/farmer.jpg -------------------------------------------------------------------------------- /images/farmhouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/farmhouse.jpg -------------------------------------------------------------------------------- /images/field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/field.jpg -------------------------------------------------------------------------------- /images/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/footer.png -------------------------------------------------------------------------------- /images/freshnest_banner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/freshnest_banner_2.png -------------------------------------------------------------------------------- /images/freshnest_banner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/freshnest_banner_3.png -------------------------------------------------------------------------------- /images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/header.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanNegi/FreshNest/HEAD/images/logo.png --------------------------------------------------------------------------------