├── main ├── app │ ├── views │ │ ├── addLinks.hbs │ │ ├── uploader.hbs │ │ ├── initialize.hbs │ │ ├── adjust.hbs │ │ ├── finish.hbs │ │ ├── generate.hbs │ │ ├── onboarding.hbs │ │ ├── editor.hbs │ │ └── settings.hbs │ ├── assets │ │ ├── img │ │ │ ├── test.jpg │ │ │ ├── rotation.svg │ │ │ ├── kiss.svg │ │ │ ├── selfie.svg │ │ │ ├── camera.svg │ │ │ └── happy.svg │ │ ├── fonts │ │ │ ├── BlendaScript.otf │ │ │ └── FiraSans-UltraLight.otf │ │ ├── data │ │ │ └── filters.json │ │ └── css │ │ │ ├── croppie.css │ │ │ ├── style.css │ │ │ └── instagram.min.css │ ├── util │ │ ├── readFileSync.js │ │ └── generator.js │ ├── index.html │ └── app.js └── main.js ├── .npmrc ├── program ├── fonts │ ├── BlendaScript.otf │ └── FiraSans-UltraLight.otf └── css │ ├── style.css │ └── instagram.min.css ├── .prettierrc.js ├── .eslintrc.js ├── bin └── cli.js ├── .vscode └── settings.json ├── license ├── readme.md ├── package.json ├── .gitignore └── images └── selfie.svg /main/app/views/addLinks.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /main/app/assets/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthology/proGramCLI/HEAD/main/app/assets/img/test.jpg -------------------------------------------------------------------------------- /program/fonts/BlendaScript.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthology/proGramCLI/HEAD/program/fonts/BlendaScript.otf -------------------------------------------------------------------------------- /main/app/assets/fonts/BlendaScript.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthology/proGramCLI/HEAD/main/app/assets/fonts/BlendaScript.otf -------------------------------------------------------------------------------- /program/fonts/FiraSans-UltraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthology/proGramCLI/HEAD/program/fonts/FiraSans-UltraLight.otf -------------------------------------------------------------------------------- /main/app/assets/fonts/FiraSans-UltraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarthology/proGramCLI/HEAD/main/app/assets/fonts/FiraSans-UltraLight.otf -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 80, 3 | tabWidth: 2, 4 | useTabs: true, 5 | semi: true, 6 | singleQuote: true, 7 | trailingComma: 'none', 8 | bracketSpacing: true, 9 | arrowParens: 'avoid', 10 | endOfLine: 'lf' 11 | }; 12 | -------------------------------------------------------------------------------- /main/app/views/uploader.hbs: -------------------------------------------------------------------------------- 1 |
Click to Upload Image
4 |{{name}}
10 |Settings
4 |Edit Profile
7 |Edit Links
10 |Contribute
13 |Support
16 |Tweet some ❤️
19 |${profile.bio}
27 |