├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── Navbar.js ├── NewUserGoal.js ├── ProfilePage.js └── WorkoutGoal.js ├── context ├── ThemeContext.js └── UserContext.js ├── images ├── no-profile.png └── pandafit.avif ├── index.css ├── index.js ├── logo.svg ├── pages ├── JournalPage.js ├── MainPage.js ├── NewUserPage.js ├── ProfilePage.js ├── UserPage.js └── WorkoutPage.js ├── reportWebVitals.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/NewUserGoal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/components/NewUserGoal.js -------------------------------------------------------------------------------- /src/components/ProfilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/components/ProfilePage.js -------------------------------------------------------------------------------- /src/components/WorkoutGoal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/components/WorkoutGoal.js -------------------------------------------------------------------------------- /src/context/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/context/ThemeContext.js -------------------------------------------------------------------------------- /src/context/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/context/UserContext.js -------------------------------------------------------------------------------- /src/images/no-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/images/no-profile.png -------------------------------------------------------------------------------- /src/images/pandafit.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/images/pandafit.avif -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/JournalPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/pages/JournalPage.js -------------------------------------------------------------------------------- /src/pages/MainPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/pages/MainPage.js -------------------------------------------------------------------------------- /src/pages/NewUserPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/pages/NewUserPage.js -------------------------------------------------------------------------------- /src/pages/ProfilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/pages/ProfilePage.js -------------------------------------------------------------------------------- /src/pages/UserPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/pages/UserPage.js -------------------------------------------------------------------------------- /src/pages/WorkoutPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/pages/WorkoutPage.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StephanyGarcesGuerra/PandaFit-frontend/HEAD/src/setupTests.js --------------------------------------------------------------------------------