├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── assets │ └── img │ │ └── imagem1.png ├── components │ ├── estaticos │ │ ├── footer │ │ │ └── Footer.tsx │ │ └── navbar │ │ │ ├── Navbar.css │ │ │ └── Navbar.tsx │ ├── postagens │ │ ├── cadastroPostageem │ │ │ └── CadastroPostagem.tsx │ │ ├── deletarPostagem │ │ │ └── DeletarPostagem.tsx │ │ ├── listaPostagens │ │ │ ├── ListaPostagem.css │ │ │ └── ListaPostagem.tsx │ │ ├── modalDelete │ │ │ └── ModalDelete.tsx │ │ ├── modalPostagem │ │ │ ├── ModalPostagem.css │ │ │ └── ModalPostagem.tsx │ │ └── tabPostagens │ │ │ ├── TabPostagem.css │ │ │ └── TabPostagem.tsx │ └── tema │ │ ├── cadastroTema │ │ ├── CadastroTema.css │ │ └── CadastroTema.tsx │ │ ├── deletarTema │ │ ├── DeletarTema.css │ │ └── DeletarTema.tsx │ │ └── listaTemas │ │ ├── ListaTemas.css │ │ └── ListaTemas.tsx ├── index.css ├── index.tsx ├── logo.svg ├── model │ ├── Postagem.ts │ ├── Tema.ts │ ├── User.ts │ └── UserLogin.ts ├── paginas │ ├── cadastro │ │ ├── Cadastro.css │ │ └── Cadastro.tsx │ ├── home │ │ ├── Home.css │ │ └── Home.tsx │ └── login │ │ ├── Login.css │ │ └── Login.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── service │ └── Service.ts ├── setupTests.ts └── store │ ├── store.ts │ └── tokens │ ├── actions.ts │ └── tokensReducer.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/img/imagem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/assets/img/imagem1.png -------------------------------------------------------------------------------- /src/components/estaticos/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/estaticos/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/estaticos/navbar/Navbar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/estaticos/navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/estaticos/navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/components/postagens/cadastroPostageem/CadastroPostagem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/cadastroPostageem/CadastroPostagem.tsx -------------------------------------------------------------------------------- /src/components/postagens/deletarPostagem/DeletarPostagem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/deletarPostagem/DeletarPostagem.tsx -------------------------------------------------------------------------------- /src/components/postagens/listaPostagens/ListaPostagem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/listaPostagens/ListaPostagem.css -------------------------------------------------------------------------------- /src/components/postagens/listaPostagens/ListaPostagem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/listaPostagens/ListaPostagem.tsx -------------------------------------------------------------------------------- /src/components/postagens/modalDelete/ModalDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/modalDelete/ModalDelete.tsx -------------------------------------------------------------------------------- /src/components/postagens/modalPostagem/ModalPostagem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/modalPostagem/ModalPostagem.css -------------------------------------------------------------------------------- /src/components/postagens/modalPostagem/ModalPostagem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/modalPostagem/ModalPostagem.tsx -------------------------------------------------------------------------------- /src/components/postagens/tabPostagens/TabPostagem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/tabPostagens/TabPostagem.css -------------------------------------------------------------------------------- /src/components/postagens/tabPostagens/TabPostagem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/postagens/tabPostagens/TabPostagem.tsx -------------------------------------------------------------------------------- /src/components/tema/cadastroTema/CadastroTema.css: -------------------------------------------------------------------------------- 1 | .topo{ 2 | margin-top: 20px; 3 | } -------------------------------------------------------------------------------- /src/components/tema/cadastroTema/CadastroTema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/tema/cadastroTema/CadastroTema.tsx -------------------------------------------------------------------------------- /src/components/tema/deletarTema/DeletarTema.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/tema/deletarTema/DeletarTema.css -------------------------------------------------------------------------------- /src/components/tema/deletarTema/DeletarTema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/tema/deletarTema/DeletarTema.tsx -------------------------------------------------------------------------------- /src/components/tema/listaTemas/ListaTemas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/tema/listaTemas/ListaTemas.css -------------------------------------------------------------------------------- /src/components/tema/listaTemas/ListaTemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/components/tema/listaTemas/ListaTemas.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/model/Postagem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/model/Postagem.ts -------------------------------------------------------------------------------- /src/model/Tema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/model/Tema.ts -------------------------------------------------------------------------------- /src/model/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/model/User.ts -------------------------------------------------------------------------------- /src/model/UserLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/model/UserLogin.ts -------------------------------------------------------------------------------- /src/paginas/cadastro/Cadastro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/paginas/cadastro/Cadastro.css -------------------------------------------------------------------------------- /src/paginas/cadastro/Cadastro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/paginas/cadastro/Cadastro.tsx -------------------------------------------------------------------------------- /src/paginas/home/Home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/paginas/home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/paginas/home/Home.tsx -------------------------------------------------------------------------------- /src/paginas/login/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/paginas/login/Login.css -------------------------------------------------------------------------------- /src/paginas/login/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/paginas/login/Login.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/service/Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/service/Service.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/store/tokens/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/store/tokens/actions.ts -------------------------------------------------------------------------------- /src/store/tokens/tokensReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/src/store/tokens/tokensReducer.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfaccipieri/blogpessoalT58/HEAD/yarn.lock --------------------------------------------------------------------------------