├── src ├── views │ ├── detail.html │ └── landing.html ├── index.html ├── index.js └── libs │ └── router.js ├── dist ├── .vscode │ └── settings.json ├── index.html └── main.js ├── designs ├── detail.jpg └── landing.jpg ├── ASSUMPTIONS.md ├── README.md ├── package.json └── webpack.config.js /src/views/detail.html: -------------------------------------------------------------------------------- 1 | details page -------------------------------------------------------------------------------- /src/views/landing.html: -------------------------------------------------------------------------------- 1 | landing page -------------------------------------------------------------------------------- /dist/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5502 3 | } -------------------------------------------------------------------------------- /designs/detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitinhepat/spa-without-framework/HEAD/designs/detail.jpg -------------------------------------------------------------------------------- /designs/landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitinhepat/spa-without-framework/HEAD/designs/landing.jpg -------------------------------------------------------------------------------- /ASSUMPTIONS.md: -------------------------------------------------------------------------------- 1 | # Assumptions 2 | 3 | [LIST ASSUMPTIONS HERE] 4 | 5 | # Still to do 6 | 7 | unable to implement designs because of less time 8 | 9 | [LIST WHAT IS STILL TO DO HERE] 10 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- 1 |
Details Landing