diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..3ddf72b --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,21 @@ +# Automates CHANGELOG generation, the creation of GitHub releases, and version bumps for specified project. + +on: + push: + branches: + - main +name: release-please +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + default-branch: main + path: . + release-type: node + package-name: '@cart180/website' + monorepo-tags: true + bump-minor-pre-major: true + bump-patch-for-minor-pre-major: true + prerelease: false \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..189f82e --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +node_modules +.pnp +.pnp.js + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +package-lock.json diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..954f191 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +cart180.com \ No newline at end of file diff --git a/README.md b/README.md index 368f5c4..c6feacb 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# cart180.website -The marketing website for cart180. +# The Marketing Website for cart180 + +#### **_Copyright (c) cart180. All rights reserved._** diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..5073c20 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1 @@ +module.exports = { extends: ["@commitlint/config-conventional"] }; diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..5f0aac3 Binary files /dev/null and b/favicon.ico differ diff --git a/index.css b/index.css new file mode 100644 index 0000000..d180ec8 --- /dev/null +++ b/index.css @@ -0,0 +1,3 @@ +body { + background-color: mintcream; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..bc029f9 --- /dev/null +++ b/index.html @@ -0,0 +1,39 @@ + + + + + + cart180 + + + + + + +
+
+ +

cart180

+
+

+ Coming Soon. +

+
+
+
+ + \ No newline at end of file diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..406a86b Binary files /dev/null and b/logo.png differ diff --git a/package.json b/package.json new file mode 100644 index 0000000..f562c23 --- /dev/null +++ b/package.json @@ -0,0 +1,55 @@ +{ + "name": "@cart180/website", + "version": "0.0.0", + "scripts": { + "lint": "eslint .", + "format": "eslint . --fix" + }, + "devDependencies": { + "@commitlint/cli": "17.2.0", + "@commitlint/config-conventional": "17.2.0", + "eslint": "8.27.0", + "eslint-config-prettier": "8.5.0", + "eslint-plugin-prettier": "4.2.1", + "husky": "4.3.8", + "lint-staged": "10.5.4", + "prettier": "2.7.1" + }, + "eslintConfig": { + "extends": [ + "eslint:recommended", + "prettier", + "plugin:prettier/recommended" + ], + "ignorePatterns": ["node_modules", ".*"], + "rules": { + "prettier/prettier": [ + "error", + { + "singleQuote": true, + "trailingComma": "none", + "tabWidth": 2, + "semi": true, + "bracketSpacing": true, + "arrowParens": "avoid", + "proseWrap": "never", + "embeddedLanguageFormatting": "auto", + "htmlWhitespaceSensitivity": "ignore" + } + ] + }, + "env": { + "browser": true, + "es2022": true + } + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged --allow-empty", + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" + } + }, + "lint-staged": { + "!.*": ["eslint . --fix"] + } +}