├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── Button.tsx │ └── Navbar.tsx ├── context │ └── AuthContext.tsx ├── firebase │ ├── auth.ts │ ├── config.ts │ └── db.ts ├── index.css ├── main.tsx ├── pages │ ├── HomePage.tsx │ ├── LoginPage.tsx │ ├── ProductFormPage.tsx │ └── RegisterPage.tsx └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/context/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/context/AuthContext.tsx -------------------------------------------------------------------------------- /src/firebase/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/firebase/auth.ts -------------------------------------------------------------------------------- /src/firebase/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/firebase/config.ts -------------------------------------------------------------------------------- /src/firebase/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/firebase/db.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /src/pages/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/pages/LoginPage.tsx -------------------------------------------------------------------------------- /src/pages/ProductFormPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/pages/ProductFormPage.tsx -------------------------------------------------------------------------------- /src/pages/RegisterPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/src/pages/RegisterPage.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/react-firebase-ecommerce/HEAD/vite.config.ts --------------------------------------------------------------------------------