├── .all-contributorsrc ├── .env ├── .gitignore ├── Chapter 01 - Inception ├── Assignment.md ├── Coding │ ├── App.js │ ├── README.md │ ├── index.css │ └── index.html ├── Theory │ └── Session1-Theory.md └── Timeline.md ├── Chapter 02 - Igniting our App ├── Assignment.md ├── Coding │ ├── App.js │ └── README.md ├── Theory │ └── Session 2 Theory.md └── Timeline.md ├── Chapter 03 - Laying the Foundation ├── Assignment.md ├── Coding │ ├── App.js │ ├── Assignment.css │ ├── Assignment.js │ ├── README.md │ ├── logo.png │ └── user icon.png ├── Theory │ └── Session 3 Theory.md └── Timeline.md ├── Chapter 04 - Talk is Cheap, show me the code ├── Assignment.md ├── Coding │ ├── App.js │ ├── README.md │ └── index.css ├── Theory │ └── Session 4 Theory.md └── Timeline.md ├── Chapter 05 - Let's get Hooked! ├── Assignment.md ├── Coding │ ├── App.js │ ├── Components │ │ ├── Body.js │ │ ├── Footer.js │ │ ├── Header.js │ │ └── RestaurantCard.js │ ├── README.md │ ├── Utils │ │ └── constants.js │ └── index.css ├── Theory │ └── Session 5 Theory.md └── Timeline.md ├── Chapter 06 - Exploring the world ├── Assignment.md ├── Coding │ ├── App.js │ ├── Components │ │ ├── Body.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── RestaurantCard.js │ │ └── Shimmer.js │ ├── Images │ │ └── monolith-microservices.png │ ├── README.md │ └── index.css ├── Theory │ └── Session 6 Theory.md └── Timeline.md ├── Chapter 07 - Finding the Path ├── Assignment.md ├── Coding │ ├── App.js │ ├── Components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Login.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantMenu.js │ │ └── Shimmer.js │ ├── README.md │ └── index.css ├── Theory │ └── Session 7 Theory.md └── Timeline.md ├── Chapter 08 - Let's get Classy ├── Assignment.md ├── Coding │ ├── App.js │ ├── Components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Login.js │ │ ├── ProfileClass.js │ │ ├── ProfileRepoClass.js │ │ ├── ProfileUserClass.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantMenu.js │ │ ├── Shimmer.js │ │ └── SocialProfileClass.js │ ├── README.md │ └── index.css ├── Theory │ └── Session 8 Theory.md └── Timeline.md ├── Chapter 09 - Optimizing our App ├── Assignment.md ├── Coding │ ├── App.js │ ├── Components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Login.js │ │ ├── ProfileClass.js │ │ ├── ProfileRepoClass.js │ │ ├── ProfileUserClass.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantMenu.js │ │ ├── Shimmer.js │ │ ├── SocialProfileClass.js │ │ └── UserOffline.js │ ├── Hooks │ │ ├── useAuth.js │ │ ├── useLocalStorage.js │ │ ├── useOnline.js │ │ ├── useResData.js │ │ └── useResMenuData.js │ ├── README.md │ ├── Utils │ │ └── Helper.js │ └── index.css ├── Theory │ └── Session 9 Theory.md └── Timeline.md ├── README.md ├── _redirects ├── index.html ├── netlify.toml ├── package.json └── public ├── Common └── constants.js └── Images ├── burgerImage.png ├── contactUs.png ├── errorImage.jpg ├── foodFireLogo.png ├── foodfireFavicon.png └── offline.png /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 01 - Inception/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 01 - Inception/Assignment.md -------------------------------------------------------------------------------- /Chapter 01 - Inception/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 01 - Inception/Coding/App.js -------------------------------------------------------------------------------- /Chapter 01 - Inception/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 01 - Inception/Coding/README.md -------------------------------------------------------------------------------- /Chapter 01 - Inception/Coding/index.css: -------------------------------------------------------------------------------- 1 | #container{ 2 | background-color: aqua; 3 | } -------------------------------------------------------------------------------- /Chapter 01 - Inception/Coding/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 01 - Inception/Coding/index.html -------------------------------------------------------------------------------- /Chapter 01 - Inception/Theory/Session1-Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 01 - Inception/Theory/Session1-Theory.md -------------------------------------------------------------------------------- /Chapter 01 - Inception/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 01 - Inception/Timeline.md -------------------------------------------------------------------------------- /Chapter 02 - Igniting our App/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 02 - Igniting our App/Assignment.md -------------------------------------------------------------------------------- /Chapter 02 - Igniting our App/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 02 - Igniting our App/Coding/App.js -------------------------------------------------------------------------------- /Chapter 02 - Igniting our App/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 02 - Igniting our App/Coding/README.md -------------------------------------------------------------------------------- /Chapter 02 - Igniting our App/Theory/Session 2 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 02 - Igniting our App/Theory/Session 2 Theory.md -------------------------------------------------------------------------------- /Chapter 02 - Igniting our App/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 02 - Igniting our App/Timeline.md -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Assignment.md -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Coding/App.js -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Coding/Assignment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Coding/Assignment.css -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Coding/Assignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Coding/Assignment.js -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Coding/README.md -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Coding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Coding/logo.png -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Coding/user icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Coding/user icon.png -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Theory/Session 3 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Theory/Session 3 Theory.md -------------------------------------------------------------------------------- /Chapter 03 - Laying the Foundation/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 03 - Laying the Foundation/Timeline.md -------------------------------------------------------------------------------- /Chapter 04 - Talk is Cheap, show me the code/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 04 - Talk is Cheap, show me the code/Assignment.md -------------------------------------------------------------------------------- /Chapter 04 - Talk is Cheap, show me the code/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 04 - Talk is Cheap, show me the code/Coding/App.js -------------------------------------------------------------------------------- /Chapter 04 - Talk is Cheap, show me the code/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 04 - Talk is Cheap, show me the code/Coding/README.md -------------------------------------------------------------------------------- /Chapter 04 - Talk is Cheap, show me the code/Coding/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 04 - Talk is Cheap, show me the code/Coding/index.css -------------------------------------------------------------------------------- /Chapter 04 - Talk is Cheap, show me the code/Theory/Session 4 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 04 - Talk is Cheap, show me the code/Theory/Session 4 Theory.md -------------------------------------------------------------------------------- /Chapter 04 - Talk is Cheap, show me the code/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 04 - Talk is Cheap, show me the code/Timeline.md -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Assignment.md -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/App.js -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/Components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/Components/Body.js -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/Components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/Components/Footer.js -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/Components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/Components/Header.js -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/Components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/Components/RestaurantCard.js -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/README.md -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/Utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/Utils/constants.js -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Coding/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Coding/index.css -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Theory/Session 5 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Theory/Session 5 Theory.md -------------------------------------------------------------------------------- /Chapter 05 - Let's get Hooked!/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 05 - Let's get Hooked!/Timeline.md -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Assignment.md -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/App.js -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/Components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/Components/Body.js -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/Components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/Components/Footer.js -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/Components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/Components/Header.js -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/Components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/Components/RestaurantCard.js -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/Components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/Components/Shimmer.js -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/Images/monolith-microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/Images/monolith-microservices.png -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/README.md -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Coding/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Coding/index.css -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Theory/Session 6 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Theory/Session 6 Theory.md -------------------------------------------------------------------------------- /Chapter 06 - Exploring the world/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 06 - Exploring the world/Timeline.md -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Assignment.md -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/App.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/About.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Body.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Contact.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Error.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Footer.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Header.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Login.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/RestaurantCard.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/RestaurantMenu.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/Components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/Components/Shimmer.js -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/README.md -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Coding/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Coding/index.css -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Theory/Session 7 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Theory/Session 7 Theory.md -------------------------------------------------------------------------------- /Chapter 07 - Finding the Path/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 07 - Finding the Path/Timeline.md -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Assignment.md -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/App.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/About.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Body.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Contact.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Error.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Footer.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Header.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Login.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/ProfileClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/ProfileClass.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/ProfileRepoClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/ProfileRepoClass.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/ProfileUserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/ProfileUserClass.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/RestaurantCard.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/RestaurantMenu.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/Shimmer.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/Components/SocialProfileClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/Components/SocialProfileClass.js -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/README.md -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Coding/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Coding/index.css -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Theory/Session 8 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Theory/Session 8 Theory.md -------------------------------------------------------------------------------- /Chapter 08 - Let's get Classy/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 08 - Let's get Classy/Timeline.md -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Assignment.md -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/App.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/About.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Body.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Contact.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Error.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Footer.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Header.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Login.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/ProfileClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/ProfileClass.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/ProfileRepoClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/ProfileRepoClass.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/ProfileUserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/ProfileUserClass.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/RestaurantCard.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/RestaurantMenu.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/Shimmer.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/SocialProfileClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/SocialProfileClass.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Components/UserOffline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Components/UserOffline.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Hooks/useAuth.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Hooks/useLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Hooks/useLocalStorage.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Hooks/useOnline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Hooks/useOnline.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Hooks/useResData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Hooks/useResData.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Hooks/useResMenuData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Hooks/useResMenuData.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/README.md -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/Utils/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/Utils/Helper.js -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Coding/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Coding/index.css -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Theory/Session 9 Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Theory/Session 9 Theory.md -------------------------------------------------------------------------------- /Chapter 09 - Optimizing our App/Timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/Chapter 09 - Optimizing our App/Timeline.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/_redirects -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/package.json -------------------------------------------------------------------------------- /public/Common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Common/constants.js -------------------------------------------------------------------------------- /public/Images/burgerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Images/burgerImage.png -------------------------------------------------------------------------------- /public/Images/contactUs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Images/contactUs.png -------------------------------------------------------------------------------- /public/Images/errorImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Images/errorImage.jpg -------------------------------------------------------------------------------- /public/Images/foodFireLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Images/foodFireLogo.png -------------------------------------------------------------------------------- /public/Images/foodfireFavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Images/foodfireFavicon.png -------------------------------------------------------------------------------- /public/Images/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannada/Namaste-React/HEAD/public/Images/offline.png --------------------------------------------------------------------------------