├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING_GUIDELINE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── documentation_bug.yml │ ├── new_features_request.yml │ └── question_and_support.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── AutoGreeting.yml │ ├── CommentOnIssueClose.yml │ ├── CommentonNewPR.yml │ ├── CommentonPRClose.yml │ ├── auto-label-issues.yml │ └── close-old-issue.yml ├── .idea ├── .gitignore ├── Community-Page.iml ├── inspectionProfiles │ └── Project_Default.xml ├── material_theme_project_new.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── Learn.md ├── README.md ├── public ├── css │ ├── gamecard.css │ └── styles.css ├── images │ ├── BANNER.png │ ├── close.svg │ ├── dotbox.jpg │ ├── envelope.png │ ├── escort.jpg │ ├── favicon.PNG │ ├── formation.jpg │ ├── loader.gif │ ├── logo.PNG │ ├── logo.gif │ ├── physic.jpg │ ├── rocket.jpg │ ├── rough.png │ ├── social1.webp │ └── squard.jpg └── js │ ├── script.js │ └── vanilla-tilt.js └── server ├── .gitignore ├── index.js ├── package-lock.json ├── package.json └── views ├── about.ejs ├── index.ejs ├── partials └── rateus.ejs ├── play.ejs ├── playgames.ejs ├── privacy.ejs └── products.ejs /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING_GUIDELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/CONTRIBUTING_GUIDELINE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/ISSUE_TEMPLATE/documentation_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_features_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/ISSUE_TEMPLATE/new_features_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question_and_support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/ISSUE_TEMPLATE/question_and_support.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/AutoGreeting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/workflows/AutoGreeting.yml -------------------------------------------------------------------------------- /.github/workflows/CommentOnIssueClose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/workflows/CommentOnIssueClose.yml -------------------------------------------------------------------------------- /.github/workflows/CommentonNewPR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/workflows/CommentonNewPR.yml -------------------------------------------------------------------------------- /.github/workflows/CommentonPRClose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/workflows/CommentonPRClose.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/workflows/auto-label-issues.yml -------------------------------------------------------------------------------- /.github/workflows/close-old-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.github/workflows/close-old-issue.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Community-Page.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/Community-Page.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/material_theme_project_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/material_theme_project_new.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/LICENSE -------------------------------------------------------------------------------- /Learn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/Learn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/README.md -------------------------------------------------------------------------------- /public/css/gamecard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/css/gamecard.css -------------------------------------------------------------------------------- /public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/css/styles.css -------------------------------------------------------------------------------- /public/images/BANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/BANNER.png -------------------------------------------------------------------------------- /public/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/close.svg -------------------------------------------------------------------------------- /public/images/dotbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/dotbox.jpg -------------------------------------------------------------------------------- /public/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/envelope.png -------------------------------------------------------------------------------- /public/images/escort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/escort.jpg -------------------------------------------------------------------------------- /public/images/favicon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/favicon.PNG -------------------------------------------------------------------------------- /public/images/formation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/formation.jpg -------------------------------------------------------------------------------- /public/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/loader.gif -------------------------------------------------------------------------------- /public/images/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/logo.PNG -------------------------------------------------------------------------------- /public/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/logo.gif -------------------------------------------------------------------------------- /public/images/physic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/physic.jpg -------------------------------------------------------------------------------- /public/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/rocket.jpg -------------------------------------------------------------------------------- /public/images/rough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/rough.png -------------------------------------------------------------------------------- /public/images/social1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/social1.webp -------------------------------------------------------------------------------- /public/images/squard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/images/squard.jpg -------------------------------------------------------------------------------- /public/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/js/script.js -------------------------------------------------------------------------------- /public/js/vanilla-tilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/public/js/vanilla-tilt.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/package.json -------------------------------------------------------------------------------- /server/views/about.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/about.ejs -------------------------------------------------------------------------------- /server/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/index.ejs -------------------------------------------------------------------------------- /server/views/partials/rateus.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/partials/rateus.ejs -------------------------------------------------------------------------------- /server/views/play.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/play.ejs -------------------------------------------------------------------------------- /server/views/playgames.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/playgames.ejs -------------------------------------------------------------------------------- /server/views/privacy.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/privacy.ejs -------------------------------------------------------------------------------- /server/views/products.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Community-Page/HEAD/server/views/products.ejs --------------------------------------------------------------------------------