├── .eslintrc.cjs ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── src ├── App.jsx ├── components │ ├── Accordion.jsx │ ├── Blogs1.jsx │ ├── Blogs2.jsx │ ├── Button.jsx │ ├── Card.jsx │ ├── Credit_Card.jsx │ ├── Footer.jsx │ ├── FormInput.jsx │ ├── Login.jsx │ ├── Navbar.jsx │ ├── Pricing_Cards.jsx │ ├── Register.jsx │ ├── SearchBar.jsx │ └── ToggleSwitch.jsx └── main.jsx └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/package.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Accordion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Accordion.jsx -------------------------------------------------------------------------------- /src/components/Blogs1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Blogs1.jsx -------------------------------------------------------------------------------- /src/components/Blogs2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Blogs2.jsx -------------------------------------------------------------------------------- /src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Button.jsx -------------------------------------------------------------------------------- /src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Card.jsx -------------------------------------------------------------------------------- /src/components/Credit_Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Credit_Card.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/FormInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/FormInput.jsx -------------------------------------------------------------------------------- /src/components/Login.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Pricing_Cards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Pricing_Cards.jsx -------------------------------------------------------------------------------- /src/components/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/Register.jsx -------------------------------------------------------------------------------- /src/components/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/SearchBar.jsx -------------------------------------------------------------------------------- /src/components/ToggleSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/components/ToggleSwitch.jsx -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parthasdey2304/React-Components/HEAD/vite.config.js --------------------------------------------------------------------------------