├── README.md ├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── index.html ├── src ├── index.js ├── App.js └── components │ ├── Button.js │ └── Nav.jsx └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # ReactTailwind_nav 2 | 3 | ## npm i 4 | 5 | #npm start 6 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sridhar-C-25/ReactTailwind_nav/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sridhar-C-25/ReactTailwind_nav/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sridhar-C-25/ReactTailwind_nav/HEAD/public/logo512.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import ReactDOM from 'react-dom'; 2 | import App from './App'; 3 | 4 | ReactDOM.render( 5 | < App />, 6 | document.getElementById('root') 7 | ); 8 | 9 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import Nav from './components/Nav' 2 | 3 | const App = () => 4 | { 5 | return ( 6 | <> 7 |