├── .firebaserc ├── .gitignore ├── README.md ├── database.rules.json ├── firebase.json ├── package.json ├── public ├── assets │ └── logo.png └── index.html ├── src ├── App.tsx ├── components │ ├── BugReportModal │ │ └── index.tsx │ ├── Container │ │ └── index.tsx │ ├── CreatePost │ │ └── index.tsx │ ├── Follow │ │ ├── index.tsx │ │ └── user.tsx │ ├── Form │ │ └── Input.tsx │ ├── Header │ │ ├── index.tsx │ │ ├── logo.tsx │ │ ├── searchbar.tsx │ │ └── user.tsx │ ├── LikesModal │ │ └── index.tsx │ ├── Posts │ │ ├── commentary.tsx │ │ ├── index.tsx │ │ └── post.tsx │ ├── Sidebar │ │ ├── NavLink.tsx │ │ ├── NavSection.tsx │ │ ├── SideBarNav.tsx │ │ └── index.tsx │ ├── Updates │ │ └── index.tsx │ ├── Welcome │ │ └── index.tsx │ └── WorkInProgress │ │ └── index.tsx ├── contexts │ ├── SidebarContext.tsx │ └── authContext.tsx ├── hooks │ ├── useAuth.ts │ ├── useFeed.ts │ └── useGetLikes.ts ├── index.tsx ├── pages │ ├── Analytics │ │ └── index.tsx │ ├── Bookmarkeds │ │ └── index.tsx │ ├── Configurations │ │ └── index.tsx │ ├── Contacts │ │ └── index.tsx │ ├── Dashboard │ │ └── index.tsx │ ├── Help │ │ └── index.tsx │ ├── Mensagens │ │ └── index.tsx │ ├── Notifications │ │ └── index.tsx │ └── SignIn │ │ └── index.tsx ├── react-app-env.d.ts ├── routes │ ├── app.routes.tsx │ ├── auth.routes.tsx │ └── index.tsx ├── services │ └── firebase.ts └── styles │ └── theme.ts ├── tsconfig.json └── yarn.lock /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/README.md -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/database.rules.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/BugReportModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/BugReportModal/index.tsx -------------------------------------------------------------------------------- /src/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Container/index.tsx -------------------------------------------------------------------------------- /src/components/CreatePost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/CreatePost/index.tsx -------------------------------------------------------------------------------- /src/components/Follow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Follow/index.tsx -------------------------------------------------------------------------------- /src/components/Follow/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Follow/user.tsx -------------------------------------------------------------------------------- /src/components/Form/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Form/Input.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Header/logo.tsx -------------------------------------------------------------------------------- /src/components/Header/searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Header/searchbar.tsx -------------------------------------------------------------------------------- /src/components/Header/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Header/user.tsx -------------------------------------------------------------------------------- /src/components/LikesModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/LikesModal/index.tsx -------------------------------------------------------------------------------- /src/components/Posts/commentary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Posts/commentary.tsx -------------------------------------------------------------------------------- /src/components/Posts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Posts/index.tsx -------------------------------------------------------------------------------- /src/components/Posts/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Posts/post.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Sidebar/NavLink.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/NavSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Sidebar/NavSection.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/SideBarNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Sidebar/SideBarNav.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/Updates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Updates/index.tsx -------------------------------------------------------------------------------- /src/components/Welcome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/Welcome/index.tsx -------------------------------------------------------------------------------- /src/components/WorkInProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/components/WorkInProgress/index.tsx -------------------------------------------------------------------------------- /src/contexts/SidebarContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/contexts/SidebarContext.tsx -------------------------------------------------------------------------------- /src/contexts/authContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/contexts/authContext.tsx -------------------------------------------------------------------------------- /src/hooks/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/hooks/useAuth.ts -------------------------------------------------------------------------------- /src/hooks/useFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/hooks/useFeed.ts -------------------------------------------------------------------------------- /src/hooks/useGetLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/hooks/useGetLikes.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Analytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Analytics/index.tsx -------------------------------------------------------------------------------- /src/pages/Bookmarkeds/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Bookmarkeds/index.tsx -------------------------------------------------------------------------------- /src/pages/Configurations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Configurations/index.tsx -------------------------------------------------------------------------------- /src/pages/Contacts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Contacts/index.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Dashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/Help/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Help/index.tsx -------------------------------------------------------------------------------- /src/pages/Mensagens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Mensagens/index.tsx -------------------------------------------------------------------------------- /src/pages/Notifications/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/Notifications/index.tsx -------------------------------------------------------------------------------- /src/pages/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/pages/SignIn/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/routes/app.routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/routes/app.routes.tsx -------------------------------------------------------------------------------- /src/routes/auth.routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/routes/auth.routes.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/services/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/services/firebase.ts -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricmaloy/FalaDev/HEAD/yarn.lock --------------------------------------------------------------------------------