├── .github ├── Contributing.md ├── conduct.md └── workflows │ ├── pr_greeting.yml │ └── static.yml ├── README.md ├── components.css ├── components.html ├── components.json ├── components ├── Login_page │ ├── image │ │ └── view.jpg │ ├── index.html │ └── style2.css ├── Signup_SignIn_page │ ├── index.html │ ├── script.js │ └── style.css ├── contact_form │ └── index.html └── react │ ├── .gitignore │ ├── README.md │ ├── build │ ├── asset-manifest.json │ ├── index.html │ ├── manifest.json │ └── static │ │ ├── css │ │ ├── main.693f2cad.css │ │ └── main.693f2cad.css.map │ │ └── js │ │ ├── main.7087bd13.js │ │ ├── main.7087bd13.js.LICENSE.txt │ │ └── main.7087bd13.js.map │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── index.html │ └── manifest.json │ └── src │ ├── App.css │ ├── App.js │ ├── index.css │ ├── index.js │ └── pages │ ├── error │ ├── Error.jsx │ └── error.css │ ├── layout │ ├── Layout.jsx │ └── layout.css │ ├── pagination │ ├── Pagination.jsx │ └── pagination.css │ └── slider │ ├── Slider.jsx │ └── slider.css ├── images ├── Signup_SignIn_page.png ├── contact.png ├── pagination.png ├── pexels-bich-tran-2481177.jpg ├── slider.png ├── view.jpg └── wb.png ├── index.html ├── script.js └── style.css /.github/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/.github/Contributing.md -------------------------------------------------------------------------------- /.github/conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/.github/conduct.md -------------------------------------------------------------------------------- /.github/workflows/pr_greeting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/.github/workflows/pr_greeting.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/README.md -------------------------------------------------------------------------------- /components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components.css -------------------------------------------------------------------------------- /components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components.html -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components.json -------------------------------------------------------------------------------- /components/Login_page/image/view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/Login_page/image/view.jpg -------------------------------------------------------------------------------- /components/Login_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/Login_page/index.html -------------------------------------------------------------------------------- /components/Login_page/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/Login_page/style2.css -------------------------------------------------------------------------------- /components/Signup_SignIn_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/Signup_SignIn_page/index.html -------------------------------------------------------------------------------- /components/Signup_SignIn_page/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/Signup_SignIn_page/script.js -------------------------------------------------------------------------------- /components/Signup_SignIn_page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/Signup_SignIn_page/style.css -------------------------------------------------------------------------------- /components/contact_form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/contact_form/index.html -------------------------------------------------------------------------------- /components/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/.gitignore -------------------------------------------------------------------------------- /components/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/README.md -------------------------------------------------------------------------------- /components/react/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/asset-manifest.json -------------------------------------------------------------------------------- /components/react/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/index.html -------------------------------------------------------------------------------- /components/react/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/manifest.json -------------------------------------------------------------------------------- /components/react/build/static/css/main.693f2cad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/static/css/main.693f2cad.css -------------------------------------------------------------------------------- /components/react/build/static/css/main.693f2cad.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/static/css/main.693f2cad.css.map -------------------------------------------------------------------------------- /components/react/build/static/js/main.7087bd13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/static/js/main.7087bd13.js -------------------------------------------------------------------------------- /components/react/build/static/js/main.7087bd13.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/static/js/main.7087bd13.js.LICENSE.txt -------------------------------------------------------------------------------- /components/react/build/static/js/main.7087bd13.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/build/static/js/main.7087bd13.js.map -------------------------------------------------------------------------------- /components/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/package-lock.json -------------------------------------------------------------------------------- /components/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/package.json -------------------------------------------------------------------------------- /components/react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/public/index.html -------------------------------------------------------------------------------- /components/react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/public/manifest.json -------------------------------------------------------------------------------- /components/react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/App.css -------------------------------------------------------------------------------- /components/react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/App.js -------------------------------------------------------------------------------- /components/react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/index.css -------------------------------------------------------------------------------- /components/react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/index.js -------------------------------------------------------------------------------- /components/react/src/pages/error/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/pages/error/Error.jsx -------------------------------------------------------------------------------- /components/react/src/pages/error/error.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/react/src/pages/layout/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/pages/layout/Layout.jsx -------------------------------------------------------------------------------- /components/react/src/pages/layout/layout.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/react/src/pages/pagination/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/pages/pagination/Pagination.jsx -------------------------------------------------------------------------------- /components/react/src/pages/pagination/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/pages/pagination/pagination.css -------------------------------------------------------------------------------- /components/react/src/pages/slider/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/pages/slider/Slider.jsx -------------------------------------------------------------------------------- /components/react/src/pages/slider/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/components/react/src/pages/slider/slider.css -------------------------------------------------------------------------------- /images/Signup_SignIn_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/Signup_SignIn_page.png -------------------------------------------------------------------------------- /images/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/contact.png -------------------------------------------------------------------------------- /images/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/pagination.png -------------------------------------------------------------------------------- /images/pexels-bich-tran-2481177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/pexels-bich-tran-2481177.jpg -------------------------------------------------------------------------------- /images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/slider.png -------------------------------------------------------------------------------- /images/view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/view.jpg -------------------------------------------------------------------------------- /images/wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/images/wb.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csiddu/Frontend-Treasure/HEAD/style.css --------------------------------------------------------------------------------