├── .gitignore
├── README.md
├── package-lock.json
├── package.json
├── public
├── css
│ ├── bootstrap.css
│ ├── font-awesome.css
│ ├── jstarbox.css
│ └── style.css
├── favicon.ico
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ ├── fontawesome-webfont.woff2
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── images
│ ├── ab.jpg
│ ├── ab1.jpg
│ ├── arr.png
│ ├── ba.jpg
│ ├── ba1.jpg
│ ├── ba2.jpg
│ ├── cac.jpg
│ ├── can.png
│ ├── co.jpg
│ ├── co1.jpg
│ ├── co2.jpg
│ ├── co3.jpg
│ ├── download.png
│ ├── ki.jpg
│ ├── ki1.jpg
│ ├── ki2.jpg
│ ├── ki3.jpg
│ ├── ki4.jpg
│ ├── ki5.jpg
│ ├── ki6.jpg
│ ├── ki7.jpg
│ ├── ki8.jpg
│ ├── me.png
│ ├── me1.png
│ ├── me2.png
│ ├── of.png
│ ├── of1.png
│ ├── of10.png
│ ├── of11.png
│ ├── of12.png
│ ├── of13.png
│ ├── of14.png
│ ├── of15.png
│ ├── of16.png
│ ├── of17.png
│ ├── of18.png
│ ├── of19.png
│ ├── of2.png
│ ├── of20.png
│ ├── of21.png
│ ├── of22.png
│ ├── of23.png
│ ├── of24.png
│ ├── of25.png
│ ├── of26.png
│ ├── of27.png
│ ├── of28.png
│ ├── of29.png
│ ├── of3.png
│ ├── of30.png
│ ├── of31.png
│ ├── of32.png
│ ├── of33.png
│ ├── of34.png
│ ├── of35.png
│ ├── of36.png
│ ├── of37.png
│ ├── of38.png
│ ├── of39.png
│ ├── of4.png
│ ├── of40.png
│ ├── of41.png
│ ├── of42.png
│ ├── of43.png
│ ├── of44.png
│ ├── of45.png
│ ├── of46.png
│ ├── of47.png
│ ├── of48.png
│ ├── of49.png
│ ├── of5.png
│ ├── of50.png
│ ├── of51.png
│ ├── of52.png
│ ├── of53.png
│ ├── of54.png
│ ├── of55.png
│ ├── of56.png
│ ├── of57.png
│ ├── of58.png
│ ├── of59.png
│ ├── of6.png
│ ├── of7.png
│ ├── of8.png
│ ├── of9.png
│ ├── sh.jpg
│ ├── si-1.jpg
│ ├── si.jpg
│ ├── super1.jpg
│ ├── super2.jpg
│ ├── super3.jpg
│ ├── super4.jpg
│ ├── superab.jpg
│ ├── wi.png
│ ├── wi1.png
│ └── wi2.png
├── index.html
├── js
│ ├── bootstrap.js
│ ├── jquery-1.11.1.min.js
│ └── jquery.vide.min.js
├── manifest.json
└── robots.txt
└── src
├── App.css
├── App.js
├── App.test.js
├── actions
├── productActions.js
├── productQuantity.js
└── types.js
├── components
├── auth
│ ├── login
│ │ └── index.js
│ └── register
│ │ └── index.js
├── nomatch
│ ├── index.js
│ └── notfound.jpg
└── web
│ ├── cart
│ ├── cart.css
│ └── index.js
│ ├── category-mobile
│ ├── category.css
│ └── index.js
│ ├── checkout
│ ├── index.js
│ └── summarycart.js
│ ├── contact
│ └── index.js
│ ├── customer
│ ├── desclaimer
│ │ └── index.js
│ ├── faq
│ │ └── index.js
│ ├── privacy-policy
│ │ └── index.js
│ └── term
│ │ └── index.js
│ ├── footer
│ └── index.js
│ ├── header
│ ├── index.js
│ └── mobile-header.js
│ ├── home
│ ├── Carousel
│ │ ├── index.js
│ │ └── sliderproduct
│ │ │ └── index.jsx
│ ├── index.js
│ └── kitechen-info
│ │ ├── index.js
│ │ └── kitechen.css
│ ├── household
│ └── index.js
│ ├── index.js
│ ├── kitchen
│ └── index.js
│ ├── personalcare
│ └── index.js
│ ├── sidebar
│ ├── index.js
│ └── sidebar.css
│ └── singleproduct
│ └── index.js
├── index.css
├── index.js
├── reducers
├── index.js
└── productReducer.js
├── serviceWorker.js
├── setupTests.js
└── store.js
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2 |
3 | ## Available Scripts
4 |
5 | In the project directory, you can run:
6 |
7 | ### `npm start`
8 |
9 | Runs the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11 |
12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console.
14 |
15 | ### `npm test`
16 |
17 | Launches the test runner in the interactive watch mode.
18 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
19 |
20 | ### `npm run build`
21 |
22 | Builds the app for production to the `build` folder.
23 | It correctly bundles React in production mode and optimizes the build for the best performance.
24 |
25 | The build is minified and the filenames include the hashes.
26 | Your app is ready to be deployed!
27 |
28 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
29 |
30 | ### `npm run eject`
31 |
32 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
33 |
34 | 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.
35 |
36 | 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.
37 |
38 | 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.
39 |
40 | ## Learn More
41 |
42 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43 |
44 | To learn React, check out the [React documentation](https://reactjs.org/).
45 |
46 | ### Code Splitting
47 |
48 | This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49 |
50 | ### Analyzing the Bundle Size
51 |
52 | This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53 |
54 | ### Making a Progressive Web App
55 |
56 | This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57 |
58 | ### Advanced Configuration
59 |
60 | This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61 |
62 | ### Deployment
63 |
64 | This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65 |
66 | ### `npm run build` fails to minify
67 |
68 | This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
69 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "ecommerce",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@material-ui/core": "^4.9.12",
7 | "@material-ui/icons": "^4.9.1",
8 | "@testing-library/jest-dom": "^4.2.4",
9 | "@testing-library/react": "^9.5.0",
10 | "@testing-library/user-event": "^7.2.1",
11 | "bootstrap": "^4.5.0",
12 | "react": "^16.13.1",
13 | "react-awesome-slider": "^4.1.0",
14 | "react-bootstrap": "^1.2.2",
15 | "react-dom": "^16.13.1",
16 | "react-items-carousel": "^2.8.0",
17 | "react-redux": "^7.2.0",
18 | "react-responsive-carousel": "^3.2.9",
19 | "react-router-dom": "^5.1.2",
20 | "react-scripts": "3.4.1",
21 | "react-slick": "^0.27.0",
22 | "redux": "^4.0.5",
23 | "redux-devtools-extension": "^2.13.8",
24 | "redux-thunk": "^2.3.0",
25 | "slick-carousel": "^1.8.1"
26 | },
27 | "scripts": {
28 | "start": "react-scripts start",
29 | "build": "react-scripts build",
30 | "test": "react-scripts test",
31 | "eject": "react-scripts eject"
32 | },
33 | "eslintConfig": {
34 | "extends": "react-app"
35 | },
36 | "browserslist": {
37 | "production": [
38 | ">0.2%",
39 | "not dead",
40 | "not op_mini all"
41 | ],
42 | "development": [
43 | "last 1 chrome version",
44 | "last 1 firefox version",
45 | "last 1 safari version"
46 | ]
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/public/css/jstarbox.css:
--------------------------------------------------------------------------------
1 | .positioner {
2 | position: relative;
3 | display: inline-block;
4 | line-height: 0;
5 | }
6 |
7 | .starbox .colorbar,
8 | .starbox .ghost {
9 | z-index: 0;
10 | position: absolute;
11 | top: 0;
12 | bottom: 0;
13 | left: 0;
14 | }
15 |
16 | .starbox .stars {
17 | display: inline-block;
18 | }
19 |
20 | .starbox .stars .star_holder {
21 | position: relative;
22 | z-index: 1;
23 | }
24 |
25 | .starbox .stars .star_holder .star {
26 | display: inline-block;
27 | vertical-align: baseline;
28 | background-repeat: no-repeat;
29 | }
30 |
31 |
32 | /* Override with your own image and size… */
33 | .starbox{
34 | float:left;
35 | }
36 | .block span{
37 | color: #A5A5A5;
38 | float: left;
39 | margin: 0 0 0 0.5em;
40 | font-size: 0.875em;
41 | }
42 | /* Override with your own colours… */
43 | .starbox .stars { background: #b0b0b0; }
44 | .starbox .rated .stars { background: #b0b0b0; }
45 | .starbox .rated.hover .stars { background: #b0b0b0; }
46 | .starbox .colorbar { background: #FAB005; }
47 | .starbox .hover .colorbar { background: #FAB005; }
48 | .starbox .rated .colorbar { background: #FAB005; }
49 | .starbox .rated.hover .colorbar { background: #FAB005; }
50 | .starbox .ghost { background: #FAB005; }
51 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/favicon.ico
--------------------------------------------------------------------------------
/public/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/public/images/ab.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ab.jpg
--------------------------------------------------------------------------------
/public/images/ab1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ab1.jpg
--------------------------------------------------------------------------------
/public/images/arr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/arr.png
--------------------------------------------------------------------------------
/public/images/ba.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ba.jpg
--------------------------------------------------------------------------------
/public/images/ba1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ba1.jpg
--------------------------------------------------------------------------------
/public/images/ba2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ba2.jpg
--------------------------------------------------------------------------------
/public/images/cac.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/cac.jpg
--------------------------------------------------------------------------------
/public/images/can.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/can.png
--------------------------------------------------------------------------------
/public/images/co.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/co.jpg
--------------------------------------------------------------------------------
/public/images/co1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/co1.jpg
--------------------------------------------------------------------------------
/public/images/co2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/co2.jpg
--------------------------------------------------------------------------------
/public/images/co3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/co3.jpg
--------------------------------------------------------------------------------
/public/images/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/download.png
--------------------------------------------------------------------------------
/public/images/ki.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki.jpg
--------------------------------------------------------------------------------
/public/images/ki1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki1.jpg
--------------------------------------------------------------------------------
/public/images/ki2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki2.jpg
--------------------------------------------------------------------------------
/public/images/ki3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki3.jpg
--------------------------------------------------------------------------------
/public/images/ki4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki4.jpg
--------------------------------------------------------------------------------
/public/images/ki5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki5.jpg
--------------------------------------------------------------------------------
/public/images/ki6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki6.jpg
--------------------------------------------------------------------------------
/public/images/ki7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki7.jpg
--------------------------------------------------------------------------------
/public/images/ki8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/ki8.jpg
--------------------------------------------------------------------------------
/public/images/me.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/me.png
--------------------------------------------------------------------------------
/public/images/me1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/me1.png
--------------------------------------------------------------------------------
/public/images/me2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/me2.png
--------------------------------------------------------------------------------
/public/images/of.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of.png
--------------------------------------------------------------------------------
/public/images/of1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of1.png
--------------------------------------------------------------------------------
/public/images/of10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of10.png
--------------------------------------------------------------------------------
/public/images/of11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of11.png
--------------------------------------------------------------------------------
/public/images/of12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of12.png
--------------------------------------------------------------------------------
/public/images/of13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of13.png
--------------------------------------------------------------------------------
/public/images/of14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of14.png
--------------------------------------------------------------------------------
/public/images/of15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of15.png
--------------------------------------------------------------------------------
/public/images/of16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of16.png
--------------------------------------------------------------------------------
/public/images/of17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of17.png
--------------------------------------------------------------------------------
/public/images/of18.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of18.png
--------------------------------------------------------------------------------
/public/images/of19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of19.png
--------------------------------------------------------------------------------
/public/images/of2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of2.png
--------------------------------------------------------------------------------
/public/images/of20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of20.png
--------------------------------------------------------------------------------
/public/images/of21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of21.png
--------------------------------------------------------------------------------
/public/images/of22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of22.png
--------------------------------------------------------------------------------
/public/images/of23.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of23.png
--------------------------------------------------------------------------------
/public/images/of24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of24.png
--------------------------------------------------------------------------------
/public/images/of25.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of25.png
--------------------------------------------------------------------------------
/public/images/of26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of26.png
--------------------------------------------------------------------------------
/public/images/of27.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of27.png
--------------------------------------------------------------------------------
/public/images/of28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of28.png
--------------------------------------------------------------------------------
/public/images/of29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of29.png
--------------------------------------------------------------------------------
/public/images/of3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of3.png
--------------------------------------------------------------------------------
/public/images/of30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of30.png
--------------------------------------------------------------------------------
/public/images/of31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of31.png
--------------------------------------------------------------------------------
/public/images/of32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of32.png
--------------------------------------------------------------------------------
/public/images/of33.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of33.png
--------------------------------------------------------------------------------
/public/images/of34.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of34.png
--------------------------------------------------------------------------------
/public/images/of35.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of35.png
--------------------------------------------------------------------------------
/public/images/of36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of36.png
--------------------------------------------------------------------------------
/public/images/of37.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of37.png
--------------------------------------------------------------------------------
/public/images/of38.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of38.png
--------------------------------------------------------------------------------
/public/images/of39.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of39.png
--------------------------------------------------------------------------------
/public/images/of4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of4.png
--------------------------------------------------------------------------------
/public/images/of40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of40.png
--------------------------------------------------------------------------------
/public/images/of41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of41.png
--------------------------------------------------------------------------------
/public/images/of42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of42.png
--------------------------------------------------------------------------------
/public/images/of43.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of43.png
--------------------------------------------------------------------------------
/public/images/of44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of44.png
--------------------------------------------------------------------------------
/public/images/of45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of45.png
--------------------------------------------------------------------------------
/public/images/of46.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of46.png
--------------------------------------------------------------------------------
/public/images/of47.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of47.png
--------------------------------------------------------------------------------
/public/images/of48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of48.png
--------------------------------------------------------------------------------
/public/images/of49.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of49.png
--------------------------------------------------------------------------------
/public/images/of5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of5.png
--------------------------------------------------------------------------------
/public/images/of50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of50.png
--------------------------------------------------------------------------------
/public/images/of51.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of51.png
--------------------------------------------------------------------------------
/public/images/of52.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of52.png
--------------------------------------------------------------------------------
/public/images/of53.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of53.png
--------------------------------------------------------------------------------
/public/images/of54.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of54.png
--------------------------------------------------------------------------------
/public/images/of55.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of55.png
--------------------------------------------------------------------------------
/public/images/of56.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of56.png
--------------------------------------------------------------------------------
/public/images/of57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of57.png
--------------------------------------------------------------------------------
/public/images/of58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of58.png
--------------------------------------------------------------------------------
/public/images/of59.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of59.png
--------------------------------------------------------------------------------
/public/images/of6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of6.png
--------------------------------------------------------------------------------
/public/images/of7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of7.png
--------------------------------------------------------------------------------
/public/images/of8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of8.png
--------------------------------------------------------------------------------
/public/images/of9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/of9.png
--------------------------------------------------------------------------------
/public/images/sh.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/sh.jpg
--------------------------------------------------------------------------------
/public/images/si-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/si-1.jpg
--------------------------------------------------------------------------------
/public/images/si.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/si.jpg
--------------------------------------------------------------------------------
/public/images/super1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/super1.jpg
--------------------------------------------------------------------------------
/public/images/super2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/super2.jpg
--------------------------------------------------------------------------------
/public/images/super3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/super3.jpg
--------------------------------------------------------------------------------
/public/images/super4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/super4.jpg
--------------------------------------------------------------------------------
/public/images/superab.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/superab.jpg
--------------------------------------------------------------------------------
/public/images/wi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/wi.png
--------------------------------------------------------------------------------
/public/images/wi1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/wi1.png
--------------------------------------------------------------------------------
/public/images/wi2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abhinash1994/grocery-ecommerce-website/7535d9f78a98fac6873d3eb8c4e3755224331059/public/images/wi2.png
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Products | 34 |Price | 35 |Quantity | 36 |Total | 37 |
---|---|---|---|
43 | ![]()
45 |
47 | {product.name}46 | clearProduct(product.tagName)}>
49 | |
50 | {product.price} | 51 |
52 |
58 |
53 |
57 | productQuantity('decrease', product.tagName)}>
54 | {product.numbers}
55 | productQuantity('increase', product.tagName)}>
56 | |
59 | {product.price * product.numbers} | 60 |
Address Type
83 |Nemo enim ipsam voluptatem quia voluptas sit aspernatur 34 | aut odit aut fugit, sed quia consequuntur magni dolores eos 35 | qui ratione voluptatem sequi nesciunt. Neque porro quisquam 36 | est, qui dolorem ipsum quia dolor sit amet, consectetur
37 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. .
37 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage.
38 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage.
51 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
52 |It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing.
53 |Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
66 |Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
79 |Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
80 |Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur.
81 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
94 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage.
95 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage.
108 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
109 |It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing.
110 |Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC.
123 |Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
136 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage.
137 |Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC.
150 |Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 163 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 164 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.
165 |Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 166 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.
167 |It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
34 |Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC.
35 |Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance
36 |If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary
40 |first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour
41 |Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
45 |Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum"
46 |This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
47 |Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
51 |Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
52 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.
56 |you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures
60 |It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
38 |Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC.
39 |Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance
40 |If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary
44 |first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour
45 |Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
49 |Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum"
50 |This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
51 |Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
55 |Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
56 |There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.
60 |you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures
64 |This is Abhinash kumar. I am full stack developer . I am working on Nodejs,sequelize(ORM),Express, mongoDB,& Reactjs since 2years .so, if you want make any kind of website/software please freely contact with us.
12 |This is Abhinash kumar. I am full stack developer . I am working on Nodejs,sequelize(ORM),Express, mongoDB,& Reactjs since 2years .so, if you want make any kind of website/software please freely contact with us.
44 |New Delhi , Saket, India.
53 |+91 8375893352
56 |pandit.bechu@gmail.com
59 |© 2020 Big store. All Rights Reserved | Design by Abhinash kumar
65 |Nam libero tempore
41 |Nam libero tempore
48 |Nam libero tempore
55 |$6.00
81 |$4.50
103 |$3.50
125 |$0.80
147 |$6.00
169 |$4.50
191 |$3.50
213 |$0.80
235 |$6.00
257 |$4.50
279 |$3.50
301 |$0.80
323 |Nam libero tempore
41 |Nam libero tempore
48 |Nam libero tempore
55 |$6.00
81 |$4.50
103 |$3.50
125 |$0.80
147 |$6.00
169 |$4.50
191 |$3.50
213 |$0.80
235 |$6.00
257 |$4.50
279 |$3.50
301 |$0.80
323 |