├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── build-angular.yml │ └── static.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── _redirects ├── angular.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── code-result │ │ │ ├── code-result.component.html │ │ │ ├── code-result.component.scss │ │ │ ├── code-result.component.spec.ts │ │ │ └── code-result.component.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ ├── loading.component.scss │ │ │ ├── loading.component.spec.ts │ │ │ └── loading.component.ts │ │ ├── menu │ │ │ ├── menu.component.html │ │ │ ├── menu.component.scss │ │ │ ├── menu.component.spec.ts │ │ │ └── menu.component.ts │ │ └── preview │ │ │ ├── preview.component.html │ │ │ ├── preview.component.scss │ │ │ ├── preview.component.spec.ts │ │ │ └── preview.component.ts │ ├── pages │ │ ├── create │ │ │ ├── create.component.html │ │ │ ├── create.component.scss │ │ │ ├── create.component.spec.ts │ │ │ └── create.component.ts │ │ └── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ ├── services │ │ └── metadata.service.ts │ └── utils │ │ └── code.js ├── assets │ ├── .gitkeep │ ├── intro.webp │ ├── logo.svg │ └── top.svg ├── favicon.ico ├── index.html ├── main.ts └── styles.scss ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-angular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.github/workflows/build-angular.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/_redirects -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/code-result/code-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/code-result/code-result.component.html -------------------------------------------------------------------------------- /src/app/components/code-result/code-result.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/code-result/code-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/code-result/code-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/code-result/code-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/code-result/code-result.component.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/loading/loading.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/loading/loading.component.html -------------------------------------------------------------------------------- /src/app/components/loading/loading.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/loading/loading.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/loading/loading.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/loading/loading.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/loading/loading.component.ts -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/menu/menu.component.html -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/menu/menu.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/menu/menu.component.ts -------------------------------------------------------------------------------- /src/app/components/preview/preview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/preview/preview.component.html -------------------------------------------------------------------------------- /src/app/components/preview/preview.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/preview/preview.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/preview/preview.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/preview/preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/components/preview/preview.component.ts -------------------------------------------------------------------------------- /src/app/pages/create/create.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/pages/create/create.component.html -------------------------------------------------------------------------------- /src/app/pages/create/create.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/create/create.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/pages/create/create.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/create/create.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/pages/create/create.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/services/metadata.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/services/metadata.service.ts -------------------------------------------------------------------------------- /src/app/utils/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/app/utils/code.js -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/intro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/assets/intro.webp -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/assets/top.svg -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoquinalha/seotopper/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------