Repository: ShubhamSarda/react-ul Branch: main Commit: dd873811fb9d Files: 4967 Total size: 15.3 MB Directory structure: gitextract_8tah8bzk/ ├── 005/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.js │ ├── index.css │ └── index.js ├── 006/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 007/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 008/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ └── header.css │ ├── index.css │ └── index.js ├── 009/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 010/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 011/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 012/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 013/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 014/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 015/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 016/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Header.js │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 017/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Header.js │ │ ├── TaskCard.js │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 018/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── BoxCard.js │ │ ├── Header.js │ │ ├── TaskCard.js │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 019/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── BoxCard.js │ │ ├── Header.js │ │ ├── TaskCard.js │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 020/ │ └── index.css ├── 021/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── BoxCard.css │ │ ├── BoxCard.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 022/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── BoxCard.css │ │ ├── BoxCard.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 023/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── BoxCard.css │ │ ├── BoxCard.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 024/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── BoxCard.css │ │ ├── BoxCard.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskCard.module.css │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 025/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.css │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 026/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.css │ │ ├── AddTask.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 027/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.css │ │ ├── AddTask.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 028/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.css │ │ ├── AddTask.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 029/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.css │ │ ├── AddTask.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 030/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.css │ │ ├── AddTask.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── TaskCard.css │ │ ├── TaskCard.js │ │ ├── TaskList.css │ │ └── TaskList.js │ ├── index.css │ └── index.js ├── 031/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 032/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── index.css │ └── index.js ├── 035/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── index.css │ └── index.js ├── 036/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── index.css │ └── index.js ├── 037/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── index.css │ └── index.js ├── 038/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── hooks/ │ │ └── useFetch.js │ ├── index.css │ └── index.js ├── 039/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── hooks/ │ │ └── useFetch.js │ ├── index.css │ └── index.js ├── 040/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── hooks/ │ │ └── useFetch.js │ ├── index.css │ └── index.js ├── 041/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── hooks/ │ │ └── useFetch.js │ ├── index.css │ └── index.js ├── 042/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ └── ProductList.js │ ├── hooks/ │ │ └── useFetch.js │ ├── index.css │ └── index.js ├── 045/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 046/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 047/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 048/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 049/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 050/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 051/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── AddTask.js │ │ ├── Header.js │ │ └── ShowTask.js │ ├── index.css │ └── index.js ├── 053/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Contact.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 054/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Contact.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 055/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Contact.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 056/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Admin.js │ │ ├── Contact.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 057/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Admin.js │ │ ├── Contact.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── PageNotFound.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 058/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Admin.js │ │ ├── Contact.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── PageNotFound.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 059/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Admin.js │ │ ├── Contact.js │ │ ├── ContactEu.js │ │ ├── ContactIn.js │ │ ├── ContactUs.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── PageNotFound.js │ │ ├── ProductDetail.js │ │ └── ProductList.js │ ├── data/ │ │ └── data.js │ ├── index.css │ └── index.js ├── 060/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ └── index.js │ ├── data/ │ │ └── data.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Admin.js │ │ ├── Contact/ │ │ │ ├── Contact.js │ │ │ ├── ContactEu.js │ │ │ ├── ContactIn.js │ │ │ └── ContactUs.js │ │ ├── Home.js │ │ ├── PageNotFound.js │ │ ├── ProductDetail.js │ │ ├── ProductList.js │ │ └── index.js │ └── routes/ │ └── AllRoutes.js ├── 063/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 064/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 065/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 067/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 068/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 069/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 070/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useFetch.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 071/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useFetch.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 072/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useFetch.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 073/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useFetch.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 074/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useFetch.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 075/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── ScrollToTop.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useFetch.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 076/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── ScrollToTop.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ ├── useFetch.js │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 077/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── ScrollToTop.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ ├── useFetch.js │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 078/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── ScrollToTop.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ ├── useFetch.js │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 079/ │ ├── .gitignore │ ├── README.md │ ├── links.txt │ ├── netlify.toml │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── components/ │ │ │ ├── Button.js │ │ │ ├── Card.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── ScrollToTop.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ ├── useFetch.js │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── MovieDetail.js │ │ │ ├── MovieList.js │ │ │ ├── PageNotFound.js │ │ │ ├── Search.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 080/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── 082/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ └── routes/ │ └── AllRoutes.js ├── 083/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ └── routes/ │ └── AllRoutes.js ├── 086/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── context/ │ │ └── CartContext.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── reducer/ │ │ └── cartReducer.js │ └── routes/ │ └── AllRoutes.js ├── 087/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── context/ │ │ └── CartContext.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── reducer/ │ │ └── cartReducer.js │ └── routes/ │ └── AllRoutes.js ├── 088/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── context/ │ │ └── CartContext.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── reducer/ │ │ └── cartReducer.js │ └── routes/ │ └── AllRoutes.js ├── 089/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── context/ │ │ └── CartContext.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── reducer/ │ │ └── cartReducer.js │ └── routes/ │ └── AllRoutes.js ├── 090/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── context/ │ │ └── CartContext.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── reducer/ │ │ └── cartReducer.js │ └── routes/ │ └── AllRoutes.js ├── 091/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── routes/ │ │ └── AllRoutes.js │ └── store/ │ ├── cartSlice.js │ └── store.js ├── 092/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── routes/ │ │ └── AllRoutes.js │ └── store/ │ ├── cartSlice.js │ └── store.js ├── 093/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── routes/ │ │ └── AllRoutes.js │ └── store/ │ ├── cartSlice.js │ └── store.js ├── 094/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── routes/ │ │ └── AllRoutes.js │ └── store/ │ ├── cartSlice.js │ └── store.js ├── 095/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── CartCard.css │ │ ├── CartCard.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProductCard.css │ │ ├── ProductCard.js │ │ └── index.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── Cart.js │ │ ├── Home.js │ │ └── index.js │ ├── routes/ │ │ └── AllRoutes.js │ └── store/ │ ├── cartSlice.js │ └── store.js ├── 097/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── index.css │ │ └── index.js │ └── tailwind.config.js ├── 098/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── index.css │ │ └── index.js │ └── tailwind.config.js ├── 099/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ └── ProductCard.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 100/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ └── ProductCard.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 100-base-components-pages/ │ ├── README.md │ ├── components/ │ │ ├── Elements/ │ │ │ ├── DropdownLoggedIn.js │ │ │ ├── DropdownLoggedOut.js │ │ │ └── ProductCard.js │ │ ├── Layouts/ │ │ │ ├── Footer.js │ │ │ └── Header.js │ │ ├── Other/ │ │ │ └── ScrollToTop.js │ │ └── Sections/ │ │ └── Search.js │ └── pages/ │ ├── Cart/ │ │ ├── CartPage.js │ │ └── components/ │ │ ├── CartCard.js │ │ ├── CartEmpty.js │ │ ├── CartList.js │ │ └── Checkout.js │ ├── Dashboard/ │ │ ├── DashbaordPage.js │ │ └── components/ │ │ ├── DashbaordCard.js │ │ └── DashbaordEmpty.js │ ├── Home/ │ │ ├── HomePage.js │ │ └── components/ │ │ ├── Faq.js │ │ ├── FeaturedProducts.js │ │ ├── Hero.js │ │ └── Testimonials.js │ ├── Login.js │ ├── Order/ │ │ ├── OrderPage.js │ │ └── components/ │ │ ├── OrderFail.js │ │ └── OrderSuccess.js │ ├── PageNotFound.js │ ├── ProductDetail.js │ ├── Products/ │ │ ├── ProductsList.js │ │ └── components/ │ │ └── FilterBar.js │ └── Register.js ├── 101/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ └── ProductCard.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 102/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ └── ProductCard.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 103/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ └── ProductCard.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 104/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ └── ProductCard.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 105/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 106/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 107/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 108/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 109/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 110/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 111/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 112/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 113/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 114/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 115/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 118/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 119/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 120/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 121/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 122/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 123/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 124/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 125/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 126/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 127/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 128/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ └── AllRoutes.js │ └── tailwind.config.js ├── 129/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ └── db.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 130/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 131/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 132/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 133/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashbaordPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashbaordCard.js │ │ │ │ └── DashbaordEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 134/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 135/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ └── routes/ │ │ ├── AllRoutes.js │ │ └── ProtectedRoute.js │ └── tailwind.config.js ├── 136/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 137/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 138/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 139/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 140/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 141/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 142/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 144/ │ ├── .gitignore │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── index.js │ └── package.json ├── 145/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 147/ │ ├── .gitignore │ ├── README.md │ ├── data/ │ │ ├── db.json │ │ └── routes.json │ ├── netlify.toml │ ├── package.json │ ├── public/ │ │ ├── assets/ │ │ │ └── images/ │ │ │ ├── 10001.avif │ │ │ ├── 10002.avif │ │ │ ├── 10003.avif │ │ │ ├── 10004.avif │ │ │ ├── 10005.avif │ │ │ ├── 10006.avif │ │ │ ├── 10007.avif │ │ │ ├── 10008.avif │ │ │ ├── 10009.avif │ │ │ ├── 10010.avif │ │ │ ├── 10011.avif │ │ │ ├── 10012.avif │ │ │ ├── 10013.avif │ │ │ ├── 10014.avif │ │ │ └── 10015.avif │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── assets/ │ │ │ └── images/ │ │ │ └── hero.avif │ │ ├── components/ │ │ │ ├── Elements/ │ │ │ │ ├── DropdownLoggedIn.js │ │ │ │ ├── DropdownLoggedOut.js │ │ │ │ ├── ProductCard.js │ │ │ │ └── Rating.js │ │ │ ├── Layouts/ │ │ │ │ ├── Footer.js │ │ │ │ └── Header.js │ │ │ ├── Other/ │ │ │ │ └── ScrollToTop.js │ │ │ ├── Sections/ │ │ │ │ └── Search.js │ │ │ └── index.js │ │ ├── context/ │ │ │ ├── CartContext.js │ │ │ ├── FilterContext.js │ │ │ └── index.js │ │ ├── hooks/ │ │ │ └── useTitle.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages/ │ │ │ ├── Cart/ │ │ │ │ ├── CartPage.js │ │ │ │ └── components/ │ │ │ │ ├── CartCard.js │ │ │ │ ├── CartEmpty.js │ │ │ │ ├── CartList.js │ │ │ │ └── Checkout.js │ │ │ ├── Dashboard/ │ │ │ │ ├── DashboardPage.js │ │ │ │ └── components/ │ │ │ │ ├── DashboardCard.js │ │ │ │ └── DashboardEmpty.js │ │ │ ├── Home/ │ │ │ │ ├── HomePage.js │ │ │ │ └── components/ │ │ │ │ ├── Accordion.js │ │ │ │ ├── Faq.js │ │ │ │ ├── FeaturedProducts.js │ │ │ │ ├── Hero.js │ │ │ │ └── Testimonials.js │ │ │ ├── Login.js │ │ │ ├── Order/ │ │ │ │ ├── OrderPage.js │ │ │ │ └── components/ │ │ │ │ ├── OrderFail.js │ │ │ │ └── OrderSuccess.js │ │ │ ├── PageNotFound.js │ │ │ ├── ProductDetail.js │ │ │ ├── Products/ │ │ │ │ ├── ProductsList.js │ │ │ │ └── components/ │ │ │ │ └── FilterBar.js │ │ │ ├── Register.js │ │ │ └── index.js │ │ ├── reducers/ │ │ │ ├── cartReducers.js │ │ │ ├── filterReducers.js │ │ │ └── index.js │ │ ├── routes/ │ │ │ ├── AllRoutes.js │ │ │ └── ProtectedRoute.js │ │ └── services/ │ │ ├── authService.js │ │ ├── dataService.js │ │ ├── index.js │ │ └── productService.js │ └── tailwind.config.js ├── 148/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ └── Joke.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 149/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ └── Counter.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ ├── PageNotFound.js │ └── __test__/ │ └── PageNotFound.test.js ├── 151/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ └── Counter.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 152/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ └── Counter.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 153/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ └── Counter.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 154/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ ├── Counter.test.js │ │ └── Header.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 155/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ ├── Counter.test.js │ │ ├── Header.test.js │ │ └── Joke.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 156/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ ├── Joke.js │ │ └── __test__/ │ │ ├── Counter.test.js │ │ ├── Header.test.js │ │ └── Joke.test.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ ├── PageNotFound.js │ └── __test__/ │ └── PageNotFound.test.js ├── 157/ │ ├── .gitignore │ ├── README.md │ ├── netlify.toml │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ └── Joke.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 158/ │ ├── .gitignore │ ├── README.md │ ├── netlify.toml │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Counter.js │ │ ├── Header.js │ │ └── Joke.js │ ├── index.css │ ├── index.js │ └── pages/ │ ├── HomePage.js │ ├── JokePage.js │ └── PageNotFound.js ├── 159/ │ ├── .gitignore │ ├── README.md │ ├── netlify.toml │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ ├── SkeletonCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 160/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 161/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 162/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 163/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 164/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 165/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 167/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 168/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 169/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 172/ │ ├── .gitignore │ ├── README.md │ ├── netlify.toml │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── components/ │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── PostCard.js │ │ ├── SkeletonCard.js │ │ └── index.js │ ├── firebase/ │ │ └── config.js │ ├── hooks/ │ │ └── useTitle.js │ ├── index.css │ ├── index.js │ ├── pages/ │ │ ├── CreatePost.js │ │ ├── HomePage.js │ │ ├── PageNotFound.js │ │ └── index.js │ └── routes/ │ ├── AllRoutes.js │ └── ProtectedRoutes.js ├── 206/ │ ├── index.html │ ├── index.js │ └── style.css ├── 207/ │ ├── index.html │ ├── index.js │ └── style.css ├── 208/ │ ├── index.html │ ├── index.js │ └── style.css ├── 209/ │ ├── index.html │ ├── index.js │ └── style.css ├── 210/ │ ├── index.html │ ├── index.js │ └── style.css ├── 252/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 253/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 254/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 255/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 256/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 257/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 258/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 259/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 260/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 261/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 262/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js ├── 263/ │ ├── dist/ │ │ ├── bundle.js │ │ └── index.html │ ├── package.json │ ├── src/ │ │ └── index.js │ └── webpack.config.js └── 264/ ├── dist/ │ ├── bundle.js │ └── index.html ├── package.json ├── src/ │ └── index.js └── webpack.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: 005/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: 005/README.md ================================================ # Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) ================================================ FILE: 005/package.json ================================================ { "name": "taskmate", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: 005/public/index.html ================================================ React App
================================================ FILE: 005/public/manifest.json ================================================ { "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: 005/public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: 005/src/App.js ================================================ const App = () => { return (

Hello!

); } export default App; ================================================ FILE: 005/src/index.css ================================================ h1{ font-size: 100px; } ================================================ FILE: 005/src/index.js ================================================ import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App"; import "./index.css"; const root = ReactDOM.createRoot(document.getElementById("root")); root.render( ); ================================================ FILE: 006/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: 006/README.md ================================================ # Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) ================================================ FILE: 006/package.json ================================================ { "name": "taskmate", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: 006/public/index.html ================================================ React App
================================================ FILE: 006/public/manifest.json ================================================ { "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: 006/public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: 006/src/App.css ================================================ ================================================ FILE: 006/src/App.js ================================================ import './App.css'; export default function App() { return (
App
) } ================================================ FILE: 006/src/index.css ================================================ ================================================ FILE: 006/src/index.js ================================================ import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( ); ================================================ FILE: 007/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: 007/README.md ================================================ # Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) ================================================ FILE: 007/package.json ================================================ { "name": "taskmate", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: 007/public/index.html ================================================ React App
================================================ FILE: 007/public/manifest.json ================================================ { "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: 007/public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: 007/src/App.css ================================================ .active{ font-size: 50px; } ================================================ FILE: 007/src/App.js ================================================ // import React from 'react'; import './App.css'; export default function App() { const username = "Shubham"; return (

{username}

Lorem ipsum dolor, placeat.

) // return React.createElement("h1", {className: "active"}, "Shubham") } ================================================ FILE: 007/src/index.css ================================================ ================================================ FILE: 007/src/index.js ================================================ import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( ); ================================================ FILE: 008/.gitignore ================================================ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /node_modules /.pnp .pnp.js # testing /coverage # production /build # misc .DS_Store .env.local .env.development.local .env.test.local .env.production.local npm-debug.log* yarn-debug.log* yarn-error.log* ================================================ FILE: 008/README.md ================================================ # Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) ================================================ FILE: 008/package.json ================================================ { "name": "taskmate", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: 008/public/index.html ================================================ React App
================================================ FILE: 008/public/manifest.json ================================================ { "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: 008/public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: 008/src/App.css ================================================ .active{ font-size: 50px; } ================================================ FILE: 008/src/App.js ================================================ import { Header } from "./components/Header"; import { Footer } from "./components/Footer"; import './App.css'; export default function App() { return ( <>

Shubham