├── .gitignore ├── README.md ├── netlify.toml └── xiahua-ai ├── .gitignore ├── .vscode └── extensions.json ├── deno.lock ├── dist ├── assets │ ├── HomeView-09688a8d.css │ ├── shawn-avatar-c6b7754c.jpg │ ├── xiaohua-ai-bottom-f2a27336.svg │ └── xiaohua-ai-top-logo-d13ef84e.svg ├── index.html ├── robots.txt ├── sitemap.xml └── vite.svg ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── images │ └── screenshots │ │ ├── about.png │ │ ├── ai-multimodal.jpg │ │ ├── homepage.png │ │ ├── products.png │ │ ├── projects.png │ │ └── shawn_huangxing_qrcode.png ├── robots.txt ├── sitemap.xml └── vite.svg ├── src ├── App.vue ├── assets │ ├── images │ │ └── shawn-avatar.jpg │ ├── vue.svg │ ├── xiaohua-ai-bottom.svg │ └── xiaohua-ai-top-logo.svg ├── components │ ├── HelloWorld.vue │ ├── ImageViewer.vue │ ├── layout │ │ ├── TheFooter.vue │ │ └── TheHeader.vue │ └── ui │ │ └── LanguageSwitcher.vue ├── i18n │ └── index.js ├── locales │ ├── en │ │ └── index.js │ └── zh-CN │ │ └── index.js ├── main.js ├── router │ └── index.js ├── style.css └── views │ ├── AboutView.vue │ ├── HomeView.vue │ ├── NotFoundView.vue │ ├── PrivacyView.vue │ ├── ProductDetailView.vue │ ├── ProductsView.vue │ ├── ProjectsView.vue │ └── TermsView.vue ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/netlify.toml -------------------------------------------------------------------------------- /xiahua-ai/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/.gitignore -------------------------------------------------------------------------------- /xiahua-ai/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /xiahua-ai/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/deno.lock -------------------------------------------------------------------------------- /xiahua-ai/dist/assets/HomeView-09688a8d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/assets/HomeView-09688a8d.css -------------------------------------------------------------------------------- /xiahua-ai/dist/assets/shawn-avatar-c6b7754c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/assets/shawn-avatar-c6b7754c.jpg -------------------------------------------------------------------------------- /xiahua-ai/dist/assets/xiaohua-ai-bottom-f2a27336.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/assets/xiaohua-ai-bottom-f2a27336.svg -------------------------------------------------------------------------------- /xiahua-ai/dist/assets/xiaohua-ai-top-logo-d13ef84e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/assets/xiaohua-ai-top-logo-d13ef84e.svg -------------------------------------------------------------------------------- /xiahua-ai/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/index.html -------------------------------------------------------------------------------- /xiahua-ai/dist/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/robots.txt -------------------------------------------------------------------------------- /xiahua-ai/dist/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/sitemap.xml -------------------------------------------------------------------------------- /xiahua-ai/dist/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/dist/vite.svg -------------------------------------------------------------------------------- /xiahua-ai/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/index.html -------------------------------------------------------------------------------- /xiahua-ai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/package-lock.json -------------------------------------------------------------------------------- /xiahua-ai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/package.json -------------------------------------------------------------------------------- /xiahua-ai/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/postcss.config.js -------------------------------------------------------------------------------- /xiahua-ai/public/images/screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/images/screenshots/about.png -------------------------------------------------------------------------------- /xiahua-ai/public/images/screenshots/ai-multimodal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/images/screenshots/ai-multimodal.jpg -------------------------------------------------------------------------------- /xiahua-ai/public/images/screenshots/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/images/screenshots/homepage.png -------------------------------------------------------------------------------- /xiahua-ai/public/images/screenshots/products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/images/screenshots/products.png -------------------------------------------------------------------------------- /xiahua-ai/public/images/screenshots/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/images/screenshots/projects.png -------------------------------------------------------------------------------- /xiahua-ai/public/images/screenshots/shawn_huangxing_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/images/screenshots/shawn_huangxing_qrcode.png -------------------------------------------------------------------------------- /xiahua-ai/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/robots.txt -------------------------------------------------------------------------------- /xiahua-ai/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/sitemap.xml -------------------------------------------------------------------------------- /xiahua-ai/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/public/vite.svg -------------------------------------------------------------------------------- /xiahua-ai/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/App.vue -------------------------------------------------------------------------------- /xiahua-ai/src/assets/images/shawn-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/assets/images/shawn-avatar.jpg -------------------------------------------------------------------------------- /xiahua-ai/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/assets/vue.svg -------------------------------------------------------------------------------- /xiahua-ai/src/assets/xiaohua-ai-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/assets/xiaohua-ai-bottom.svg -------------------------------------------------------------------------------- /xiahua-ai/src/assets/xiaohua-ai-top-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/assets/xiaohua-ai-top-logo.svg -------------------------------------------------------------------------------- /xiahua-ai/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /xiahua-ai/src/components/ImageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/components/ImageViewer.vue -------------------------------------------------------------------------------- /xiahua-ai/src/components/layout/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/components/layout/TheFooter.vue -------------------------------------------------------------------------------- /xiahua-ai/src/components/layout/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/components/layout/TheHeader.vue -------------------------------------------------------------------------------- /xiahua-ai/src/components/ui/LanguageSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/components/ui/LanguageSwitcher.vue -------------------------------------------------------------------------------- /xiahua-ai/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/i18n/index.js -------------------------------------------------------------------------------- /xiahua-ai/src/locales/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/locales/en/index.js -------------------------------------------------------------------------------- /xiahua-ai/src/locales/zh-CN/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/locales/zh-CN/index.js -------------------------------------------------------------------------------- /xiahua-ai/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/main.js -------------------------------------------------------------------------------- /xiahua-ai/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/router/index.js -------------------------------------------------------------------------------- /xiahua-ai/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/style.css -------------------------------------------------------------------------------- /xiahua-ai/src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/AboutView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/HomeView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/NotFoundView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/NotFoundView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/PrivacyView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/PrivacyView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/ProductDetailView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/ProductDetailView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/ProductsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/ProductsView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/ProjectsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/ProjectsView.vue -------------------------------------------------------------------------------- /xiahua-ai/src/views/TermsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/src/views/TermsView.vue -------------------------------------------------------------------------------- /xiahua-ai/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/tailwind.config.js -------------------------------------------------------------------------------- /xiahua-ai/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeleepm/xiahua-ai/HEAD/xiahua-ai/vite.config.js --------------------------------------------------------------------------------