├── .versionrc ├── .github └── workflows │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CNAME ├── LICENSE ├── README.md ├── README.zh-CN.md ├── commitlint.config.js ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── 404.html ├── fonts │ ├── SmileySans-Oblique.ttf │ └── ZCOOLKuHei-Regular.ttf ├── logo.png ├── preview-1.jpg └── preview-2.jpg ├── src ├── App.css ├── App.tsx ├── assets │ └── logo.png ├── components │ ├── generator │ │ ├── ConfigPanel │ │ │ ├── BackgroundConfig.tsx │ │ │ ├── FontConfig.tsx │ │ │ ├── IconConfig.tsx │ │ │ ├── SizeConfig.tsx │ │ │ ├── TitleConfig.tsx │ │ │ └── index.tsx │ │ ├── Header.tsx │ │ └── Preview.tsx │ ├── layout │ │ ├── cta.tsx │ │ ├── features.tsx │ │ ├── footer.tsx │ │ ├── hero.tsx │ │ └── navbar.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── resizable.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── slider.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ └── textarea.tsx ├── config │ └── generator.ts ├── index.css ├── lib │ └── utils.ts ├── locales │ ├── en.ts │ └── zh.ts ├── main.tsx ├── pages │ ├── about │ │ └── index.tsx │ ├── contact │ │ └── index.tsx │ ├── faq │ │ └── index.tsx │ ├── features │ │ └── index.tsx │ ├── generator │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ └── not-found │ │ └── index.tsx ├── router │ └── index.tsx ├── store │ └── generator.ts ├── styles │ └── globals.css ├── types │ └── generator.ts ├── utils │ ├── generator.ts │ └── i18n.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts / .versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/ .versionrc -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | npx commitlint --edit "$1" 3 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | npx lint-staged 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | cova.guizimo.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/public/404.html -------------------------------------------------------------------------------- /public/fonts/SmileySans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/public/fonts/SmileySans-Oblique.ttf -------------------------------------------------------------------------------- /public/fonts/ZCOOLKuHei-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/public/fonts/ZCOOLKuHei-Regular.ttf -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/preview-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/public/preview-1.jpg -------------------------------------------------------------------------------- /public/preview-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/public/preview-2.jpg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | margin: 0 auto; 3 | } 4 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/generator/ConfigPanel/BackgroundConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/ConfigPanel/BackgroundConfig.tsx -------------------------------------------------------------------------------- /src/components/generator/ConfigPanel/FontConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/ConfigPanel/FontConfig.tsx -------------------------------------------------------------------------------- /src/components/generator/ConfigPanel/IconConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/ConfigPanel/IconConfig.tsx -------------------------------------------------------------------------------- /src/components/generator/ConfigPanel/SizeConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/ConfigPanel/SizeConfig.tsx -------------------------------------------------------------------------------- /src/components/generator/ConfigPanel/TitleConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/ConfigPanel/TitleConfig.tsx -------------------------------------------------------------------------------- /src/components/generator/ConfigPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/ConfigPanel/index.tsx -------------------------------------------------------------------------------- /src/components/generator/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/Header.tsx -------------------------------------------------------------------------------- /src/components/generator/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/generator/Preview.tsx -------------------------------------------------------------------------------- /src/components/layout/cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/layout/cta.tsx -------------------------------------------------------------------------------- /src/components/layout/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/layout/features.tsx -------------------------------------------------------------------------------- /src/components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/layout/footer.tsx -------------------------------------------------------------------------------- /src/components/layout/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/layout/hero.tsx -------------------------------------------------------------------------------- /src/components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/layout/navbar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/config/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/config/generator.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/locales/en.ts -------------------------------------------------------------------------------- /src/locales/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/locales/zh.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/about/index.tsx -------------------------------------------------------------------------------- /src/pages/contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/contact/index.tsx -------------------------------------------------------------------------------- /src/pages/faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/faq/index.tsx -------------------------------------------------------------------------------- /src/pages/features/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/features/index.tsx -------------------------------------------------------------------------------- /src/pages/generator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/generator/index.tsx -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/not-found/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/pages/not-found/index.tsx -------------------------------------------------------------------------------- /src/router/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/router/index.tsx -------------------------------------------------------------------------------- /src/store/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/store/generator.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/types/generator.ts -------------------------------------------------------------------------------- /src/utils/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/utils/generator.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guizimo/cova/HEAD/vite.config.ts --------------------------------------------------------------------------------