├── .distignore ├── .env ├── .eslintrc.json ├── .github └── workflows │ ├── codeql-analysis.yml │ ├── deploy-staging.yml │ ├── new-issues.yml │ ├── playwright.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── logo-maker.iml ├── modules.xml └── vcs.xml ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── ARCHITECTURE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── development ├── Overview.png ├── createFontConfigFile.js ├── downloadFonts.js ├── fonts.txt ├── linux_setup.sh └── logo_maker_plugin.zip ├── docker-compose.yml ├── docs ├── assets │ ├── css │ │ └── main.css │ ├── images │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ └── widgets@2x.png │ └── js │ │ ├── main.js │ │ └── search.js ├── index.html ├── interfaces │ ├── engine_shapesaligner.basealigneroutput.html │ ├── engine_shapesaligner.baseshapedimensions.html │ ├── engine_shapesbuilder.baseshaphebuilder.html │ └── engine_shapesbuilder.extendedshapebuilder.html ├── modules.html └── modules │ ├── application.html │ ├── components_createlogo.html │ ├── components_custom.html │ ├── components_ui_downloadbutton.html │ ├── components_ui_logoitem.html │ ├── components_ui_selectcolors.html │ ├── components_ui_selectlayout.html │ ├── components_ui_selectlogo.html │ ├── components_ui_selecttypography.html │ ├── creator.html │ ├── engine_alignfunctions.html │ ├── engine_export.html │ ├── engine_googlefonts.html │ ├── engine_settings.html │ ├── engine_shapesaligner.html │ ├── engine_shapesbuilder.html │ ├── engine_utility.html │ ├── index.html │ ├── showcase.html │ ├── start.html │ ├── stores_assetsstore.html │ └── stores_uistore.html ├── fonts ├── AlfaSlabOne-Regular.ttf ├── Anton-Regular.ttf ├── Bangers-Regular.ttf ├── BebasNeue-Regular.ttf ├── CinzelDecorative-Regular.ttf ├── Creepster-Regular.ttf ├── CreteRound-Regular.ttf ├── DancingScript-Regular.ttf ├── FiraSans-Regular.ttf ├── HennyPenny-Regular.ttf ├── Karla-Regular.ttf ├── Lato-Regular.ttf ├── Lemonada-Regular.ttf ├── LibreBaskerville-Regular.ttf ├── LobsterTwo-Regular.ttf ├── Lora-Regular.ttf ├── Montserrat-Regular.ttf ├── NotoSans-Regular.ttf ├── NotoSerif-Regular.ttf ├── OleoScriptSwashCaps-Regular.ttf ├── OpenSans-Regular.ttf ├── Orbitron-Regular.ttf ├── Oswald-Regular.ttf ├── Parisienne-Regular.ttf ├── PermanentMarker-Regular.ttf ├── Play-Regular.ttf ├── Playball-Regular.ttf ├── Rajdhani-Regular.ttf ├── Roboto-Regular.ttf ├── Satisfy-Regular.ttf ├── SourceSerifPro-Regular.ttf ├── Ubuntu-Regular.ttf └── UnifrakturMaguntia-Regular.ttf ├── index.php ├── package.json ├── playwright.config.ts ├── public ├── favicon.ico ├── index.html └── robots.txt ├── src ├── Application.tsx ├── Creator.tsx ├── Showcase.tsx ├── Start.tsx ├── assets │ ├── colors │ │ └── index.ts │ ├── fonts │ │ ├── cursive.ts │ │ ├── fonts.json │ │ ├── google-fonts.ts │ │ ├── index.ts │ │ ├── monospaced.ts │ │ ├── sans.ts │ │ └── serif.ts │ ├── logos │ │ ├── index.ts │ │ ├── set1 │ │ │ ├── index.ts │ │ │ ├── logo1.ts │ │ │ ├── logo10.ts │ │ │ ├── logo2.ts │ │ │ ├── logo3.ts │ │ │ ├── logo4.ts │ │ │ ├── logo5.ts │ │ │ ├── logo6.ts │ │ │ ├── logo7.ts │ │ │ ├── logo8.ts │ │ │ └── logo9.ts │ │ ├── set2 │ │ │ ├── index.ts │ │ │ ├── logo11.ts │ │ │ ├── logo12.ts │ │ │ ├── logo13.ts │ │ │ ├── logo14.ts │ │ │ ├── logo15.ts │ │ │ ├── logo16.ts │ │ │ ├── logo17.ts │ │ │ ├── logo18.ts │ │ │ ├── logo19.ts │ │ │ └── logo20.ts │ │ ├── set3 │ │ │ ├── index.ts │ │ │ ├── logo21.ts │ │ │ ├── logo22.ts │ │ │ ├── logo23.ts │ │ │ ├── logo24.ts │ │ │ ├── logo25.ts │ │ │ ├── logo26.ts │ │ │ ├── logo27.ts │ │ │ ├── logo28.ts │ │ │ ├── logo29.ts │ │ │ └── logo30.ts │ │ ├── set4 │ │ │ ├── index.ts │ │ │ ├── logo31.ts │ │ │ ├── logo32.ts │ │ │ ├── logo33.ts │ │ │ ├── logo34.ts │ │ │ ├── logo35.ts │ │ │ ├── logo36.ts │ │ │ ├── logo37.ts │ │ │ ├── logo38.ts │ │ │ ├── logo39.ts │ │ │ └── logo40.ts │ │ └── set5 │ │ │ ├── index.ts │ │ │ ├── logo41.ts │ │ │ ├── logo42.ts │ │ │ ├── logo43.ts │ │ │ ├── logo44.ts │ │ │ ├── logo45.ts │ │ │ ├── logo46.ts │ │ │ ├── logo47.ts │ │ │ ├── logo48.ts │ │ │ ├── logo49.ts │ │ │ └── logo50.ts │ └── styles │ │ ├── Creator │ │ ├── creator.scss │ │ ├── download-button.scss │ │ ├── select-colors.scss │ │ ├── select-layout.scss │ │ ├── select-logo.scss │ │ └── select-typography.scss │ │ ├── Showcase │ │ └── showcase.scss │ │ ├── Start │ │ └── start.scss │ │ ├── _constants.scss │ │ ├── common.scss │ │ ├── fallback.scss │ │ └── index.scss ├── components │ ├── CreateLogo.tsx │ ├── Fallback.tsx │ ├── custom.d.ts │ └── ui │ │ ├── DownloadButton.tsx │ │ ├── LogoItem.tsx │ │ ├── SelectColors.tsx │ │ ├── SelectLayout.tsx │ │ ├── SelectLogo.tsx │ │ ├── SelectTypography.tsx │ │ └── common │ │ ├── BackUI.tsx │ │ ├── ColorPicker.tsx │ │ ├── ColorsUIsvg.tsx │ │ ├── HorizontalLineUIsvg.tsx │ │ ├── LayoutUIsvg.tsx │ │ ├── LogoUIsvg.tsx │ │ ├── ThemeisleUI.tsx │ │ └── TypographyUIsvg.tsx ├── engine │ ├── export.ts │ ├── googleFonts.ts │ ├── pipeline.ts │ ├── render │ │ ├── alignFunctions.ts │ │ ├── settings.ts │ │ ├── shapesAligner.ts │ │ ├── shapesBuilder.ts │ │ ├── textBuilder.ts │ │ └── textToSVG.ts │ └── utility.ts ├── index.tsx └── stores │ ├── AssetsStore.ts │ └── UIStore.ts ├── tests ├── creator.spec.ts ├── download.spec.ts ├── showcase.spec.ts └── start.spec.ts ├── tsconfig.json ├── types ├── body-scroll-lock │ └── index.d.ts ├── font-face.d.ts └── static.d.ts ├── webpack.config.js ├── webpack.fonts.js └── wordpress └── index.tsx /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.distignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | SASS_PATH="./src/assets/styles" 2 | __DEV__=true 3 | NODE_ENV=development -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.github/workflows/deploy-staging.yml -------------------------------------------------------------------------------- /.github/workflows/new-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.github/workflows/new-issues.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/logo-maker.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/logo-maker.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | /src/assets/styles/ 4 | .cache 5 | dist -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /development/Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/development/Overview.png -------------------------------------------------------------------------------- /development/createFontConfigFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/development/createFontConfigFile.js -------------------------------------------------------------------------------- /development/downloadFonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/development/downloadFonts.js -------------------------------------------------------------------------------- /development/fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/development/fonts.txt -------------------------------------------------------------------------------- /development/linux_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/development/linux_setup.sh -------------------------------------------------------------------------------- /development/logo_maker_plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/development/logo_maker_plugin.zip -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/images/icons.png -------------------------------------------------------------------------------- /docs/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/assets/js/search.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/engine_shapesaligner.basealigneroutput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/interfaces/engine_shapesaligner.basealigneroutput.html -------------------------------------------------------------------------------- /docs/interfaces/engine_shapesaligner.baseshapedimensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/interfaces/engine_shapesaligner.baseshapedimensions.html -------------------------------------------------------------------------------- /docs/interfaces/engine_shapesbuilder.baseshaphebuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/interfaces/engine_shapesbuilder.baseshaphebuilder.html -------------------------------------------------------------------------------- /docs/interfaces/engine_shapesbuilder.extendedshapebuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/interfaces/engine_shapesbuilder.extendedshapebuilder.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/modules/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/application.html -------------------------------------------------------------------------------- /docs/modules/components_createlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_createlogo.html -------------------------------------------------------------------------------- /docs/modules/components_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_custom.html -------------------------------------------------------------------------------- /docs/modules/components_ui_downloadbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_ui_downloadbutton.html -------------------------------------------------------------------------------- /docs/modules/components_ui_logoitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_ui_logoitem.html -------------------------------------------------------------------------------- /docs/modules/components_ui_selectcolors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_ui_selectcolors.html -------------------------------------------------------------------------------- /docs/modules/components_ui_selectlayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_ui_selectlayout.html -------------------------------------------------------------------------------- /docs/modules/components_ui_selectlogo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_ui_selectlogo.html -------------------------------------------------------------------------------- /docs/modules/components_ui_selecttypography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/components_ui_selecttypography.html -------------------------------------------------------------------------------- /docs/modules/creator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/creator.html -------------------------------------------------------------------------------- /docs/modules/engine_alignfunctions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_alignfunctions.html -------------------------------------------------------------------------------- /docs/modules/engine_export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_export.html -------------------------------------------------------------------------------- /docs/modules/engine_googlefonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_googlefonts.html -------------------------------------------------------------------------------- /docs/modules/engine_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_settings.html -------------------------------------------------------------------------------- /docs/modules/engine_shapesaligner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_shapesaligner.html -------------------------------------------------------------------------------- /docs/modules/engine_shapesbuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_shapesbuilder.html -------------------------------------------------------------------------------- /docs/modules/engine_utility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/engine_utility.html -------------------------------------------------------------------------------- /docs/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/index.html -------------------------------------------------------------------------------- /docs/modules/showcase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/showcase.html -------------------------------------------------------------------------------- /docs/modules/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/start.html -------------------------------------------------------------------------------- /docs/modules/stores_assetsstore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/stores_assetsstore.html -------------------------------------------------------------------------------- /docs/modules/stores_uistore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/docs/modules/stores_uistore.html -------------------------------------------------------------------------------- /fonts/AlfaSlabOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/AlfaSlabOne-Regular.ttf -------------------------------------------------------------------------------- /fonts/Anton-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Anton-Regular.ttf -------------------------------------------------------------------------------- /fonts/Bangers-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Bangers-Regular.ttf -------------------------------------------------------------------------------- /fonts/BebasNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/BebasNeue-Regular.ttf -------------------------------------------------------------------------------- /fonts/CinzelDecorative-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/CinzelDecorative-Regular.ttf -------------------------------------------------------------------------------- /fonts/Creepster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Creepster-Regular.ttf -------------------------------------------------------------------------------- /fonts/CreteRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/CreteRound-Regular.ttf -------------------------------------------------------------------------------- /fonts/DancingScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/DancingScript-Regular.ttf -------------------------------------------------------------------------------- /fonts/FiraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/FiraSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/HennyPenny-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/HennyPenny-Regular.ttf -------------------------------------------------------------------------------- /fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /fonts/Lemonada-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Lemonada-Regular.ttf -------------------------------------------------------------------------------- /fonts/LibreBaskerville-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/LibreBaskerville-Regular.ttf -------------------------------------------------------------------------------- /fonts/LobsterTwo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/LobsterTwo-Regular.ttf -------------------------------------------------------------------------------- /fonts/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Lora-Regular.ttf -------------------------------------------------------------------------------- /fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /fonts/OleoScriptSwashCaps-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/OleoScriptSwashCaps-Regular.ttf -------------------------------------------------------------------------------- /fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fonts/Orbitron-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Orbitron-Regular.ttf -------------------------------------------------------------------------------- /fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /fonts/Parisienne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Parisienne-Regular.ttf -------------------------------------------------------------------------------- /fonts/PermanentMarker-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/PermanentMarker-Regular.ttf -------------------------------------------------------------------------------- /fonts/Play-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Play-Regular.ttf -------------------------------------------------------------------------------- /fonts/Playball-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Playball-Regular.ttf -------------------------------------------------------------------------------- /fonts/Rajdhani-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Rajdhani-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/Satisfy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Satisfy-Regular.ttf -------------------------------------------------------------------------------- /fonts/SourceSerifPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/SourceSerifPro-Regular.ttf -------------------------------------------------------------------------------- /fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /fonts/UnifrakturMaguntia-Regular.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/Application.tsx -------------------------------------------------------------------------------- /src/Creator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/Creator.tsx -------------------------------------------------------------------------------- /src/Showcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/Showcase.tsx -------------------------------------------------------------------------------- /src/Start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/Start.tsx -------------------------------------------------------------------------------- /src/assets/colors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/colors/index.ts -------------------------------------------------------------------------------- /src/assets/fonts/cursive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/cursive.ts -------------------------------------------------------------------------------- /src/assets/fonts/fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/fonts.json -------------------------------------------------------------------------------- /src/assets/fonts/google-fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/google-fonts.ts -------------------------------------------------------------------------------- /src/assets/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/index.ts -------------------------------------------------------------------------------- /src/assets/fonts/monospaced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/monospaced.ts -------------------------------------------------------------------------------- /src/assets/fonts/sans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/sans.ts -------------------------------------------------------------------------------- /src/assets/fonts/serif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/fonts/serif.ts -------------------------------------------------------------------------------- /src/assets/logos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/index.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/index.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo1.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo10.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo10.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo2.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo3.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo4.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo5.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo6.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo7.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo8.ts -------------------------------------------------------------------------------- /src/assets/logos/set1/logo9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set1/logo9.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/index.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo11.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo12.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo13.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo13.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo14.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo14.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo15.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo16.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo17.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo17.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo18.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo18.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo19.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo19.ts -------------------------------------------------------------------------------- /src/assets/logos/set2/logo20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set2/logo20.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/index.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo21.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo21.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo22.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo22.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo23.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo23.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo24.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo24.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo25.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo25.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo26.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo26.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo27.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo27.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo28.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo28.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo29.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo29.ts -------------------------------------------------------------------------------- /src/assets/logos/set3/logo30.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set3/logo30.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/index.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo31.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo31.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo32.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo33.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo33.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo34.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo34.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo35.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo35.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo36.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo36.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo37.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo37.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo38.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo38.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo39.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo39.ts -------------------------------------------------------------------------------- /src/assets/logos/set4/logo40.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set4/logo40.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/index.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo41.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo41.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo42.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo42.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo43.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo43.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo44.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo44.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo45.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo45.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo46.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo46.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo47.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo47.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo48.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo48.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo49.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo49.ts -------------------------------------------------------------------------------- /src/assets/logos/set5/logo50.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/logos/set5/logo50.ts -------------------------------------------------------------------------------- /src/assets/styles/Creator/creator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Creator/creator.scss -------------------------------------------------------------------------------- /src/assets/styles/Creator/download-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Creator/download-button.scss -------------------------------------------------------------------------------- /src/assets/styles/Creator/select-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Creator/select-colors.scss -------------------------------------------------------------------------------- /src/assets/styles/Creator/select-layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Creator/select-layout.scss -------------------------------------------------------------------------------- /src/assets/styles/Creator/select-logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Creator/select-logo.scss -------------------------------------------------------------------------------- /src/assets/styles/Creator/select-typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Creator/select-typography.scss -------------------------------------------------------------------------------- /src/assets/styles/Showcase/showcase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Showcase/showcase.scss -------------------------------------------------------------------------------- /src/assets/styles/Start/start.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/Start/start.scss -------------------------------------------------------------------------------- /src/assets/styles/_constants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/_constants.scss -------------------------------------------------------------------------------- /src/assets/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/common.scss -------------------------------------------------------------------------------- /src/assets/styles/fallback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/fallback.scss -------------------------------------------------------------------------------- /src/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/assets/styles/index.scss -------------------------------------------------------------------------------- /src/components/CreateLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/CreateLogo.tsx -------------------------------------------------------------------------------- /src/components/Fallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/Fallback.tsx -------------------------------------------------------------------------------- /src/components/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/custom.d.ts -------------------------------------------------------------------------------- /src/components/ui/DownloadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/DownloadButton.tsx -------------------------------------------------------------------------------- /src/components/ui/LogoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/LogoItem.tsx -------------------------------------------------------------------------------- /src/components/ui/SelectColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/SelectColors.tsx -------------------------------------------------------------------------------- /src/components/ui/SelectLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/SelectLayout.tsx -------------------------------------------------------------------------------- /src/components/ui/SelectLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/SelectLogo.tsx -------------------------------------------------------------------------------- /src/components/ui/SelectTypography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/SelectTypography.tsx -------------------------------------------------------------------------------- /src/components/ui/common/BackUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/BackUI.tsx -------------------------------------------------------------------------------- /src/components/ui/common/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/ColorPicker.tsx -------------------------------------------------------------------------------- /src/components/ui/common/ColorsUIsvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/ColorsUIsvg.tsx -------------------------------------------------------------------------------- /src/components/ui/common/HorizontalLineUIsvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/HorizontalLineUIsvg.tsx -------------------------------------------------------------------------------- /src/components/ui/common/LayoutUIsvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/LayoutUIsvg.tsx -------------------------------------------------------------------------------- /src/components/ui/common/LogoUIsvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/LogoUIsvg.tsx -------------------------------------------------------------------------------- /src/components/ui/common/ThemeisleUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/ThemeisleUI.tsx -------------------------------------------------------------------------------- /src/components/ui/common/TypographyUIsvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/components/ui/common/TypographyUIsvg.tsx -------------------------------------------------------------------------------- /src/engine/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/export.ts -------------------------------------------------------------------------------- /src/engine/googleFonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/googleFonts.ts -------------------------------------------------------------------------------- /src/engine/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/pipeline.ts -------------------------------------------------------------------------------- /src/engine/render/alignFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/render/alignFunctions.ts -------------------------------------------------------------------------------- /src/engine/render/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/render/settings.ts -------------------------------------------------------------------------------- /src/engine/render/shapesAligner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/render/shapesAligner.ts -------------------------------------------------------------------------------- /src/engine/render/shapesBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/render/shapesBuilder.ts -------------------------------------------------------------------------------- /src/engine/render/textBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/render/textBuilder.ts -------------------------------------------------------------------------------- /src/engine/render/textToSVG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/render/textToSVG.ts -------------------------------------------------------------------------------- /src/engine/utility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/engine/utility.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/stores/AssetsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/stores/AssetsStore.ts -------------------------------------------------------------------------------- /src/stores/UIStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/src/stores/UIStore.ts -------------------------------------------------------------------------------- /tests/creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/tests/creator.spec.ts -------------------------------------------------------------------------------- /tests/download.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/tests/download.spec.ts -------------------------------------------------------------------------------- /tests/showcase.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/tests/showcase.spec.ts -------------------------------------------------------------------------------- /tests/start.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/tests/start.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/body-scroll-lock/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/types/body-scroll-lock/index.d.ts -------------------------------------------------------------------------------- /types/font-face.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/types/font-face.d.ts -------------------------------------------------------------------------------- /types/static.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/types/static.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/webpack.fonts.js -------------------------------------------------------------------------------- /wordpress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/logo-maker/HEAD/wordpress/index.tsx --------------------------------------------------------------------------------