diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 875f273..0000000 --- a/.editorconfig +++ /dev/null @@ -1,22 +0,0 @@ -# EditorConfig helps developers define and maintain consistent -# coding styles between different editors and IDEs. -# editorconfig.org - -root = true - -[*] - -# We recommend you to keep these unchanged. -charset = utf-8 -end_of_line = lf -indent_size = 2 -indent_style = space -insert_final_newline = true -trim_trailing_whitespace = true - -[package.json] -indent_style = space -indent_size = 2 - -[*.md] -trim_trailing_whitespace = false diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 459769b..0000000 --- a/.eslintrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "react-app", - "plugins": ["prettier"], - "rules": { - "prettier/prettier": "error", - "import/no-anonymous-default-export": [0] - } - } diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 1c13e8a..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Test -on: - push: -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install modules - run: npm install - - name: Run tests - run: npm run test diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 8b8c604..0000000 --- a/.gitignore +++ /dev/null @@ -1,30 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage -/cypress/videos -/cypress/screenshots - -# builds -build -dist -.rpt2_cache -storybook-static -.cache - - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* diff --git a/.prettierrc.js b/.prettierrc.js deleted file mode 100644 index 207305a..0000000 --- a/.prettierrc.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - semi: false, - trailingComma: 'all', - singleQuote: true, - printWidth: 90, - tabWidth: 2, -}; diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8bd51ee..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Chrome", - "type": "chrome", - "request": "launch", - "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}/src", - "sourceMapPathOverrides": { - "webpack:///src/*": "${webRoot}/*" - } - } - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 2fe2109..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "editor.formatOnSave": false, - "eslint.autoFixOnSave": true, - "eslint.validate": [ - "javascript", - "javascriptreact", - { - "language": "typescript", - "autoFix": true - }, - { - "language": "typescriptreact", - "autoFix": true - } - ], - "editor.codeActionsOnSave": { - "source.fixAll.eslint": true - }, -} diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index e69de29..0000000 diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..d6882b8 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +modular-admin-tailwind-react.modularcode.io diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 0199c1d..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Gevorg Harutyunyan - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 94d8c10..0000000 --- a/README.md +++ /dev/null @@ -1,53 +0,0 @@ -
- - 🚀 View Demo - - | - - 🤷🏼♂️ Read The Docs - -
- - -## Available Scripts - -In the project directory, you can run: - -### `npm start` - -Runs the app in the development mode.{content}
-{content2}
-{content3}
-{props.children}
-} - -export default BaseText diff --git a/src/_common/BaseText/index.ts b/src/_common/BaseText/index.ts deleted file mode 100644 index 21f1116..0000000 --- a/src/_common/BaseText/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from './BaseText' diff --git a/src/_common/TheFooter/TheFooter.tsx b/src/_common/TheFooter/TheFooter.tsx deleted file mode 100644 index 5abb05c..0000000 --- a/src/_common/TheFooter/TheFooter.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import React from 'react' -import BaseLink from '_common/BaseLink' - -const TheFooter: React.FC = () => { - return ( -