├── .env.example ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── README_ja.md ├── README_zh.md ├── components.json ├── next.config.mjs ├── package.json ├── pm2-deploy.cjs ├── postcss.config.cjs ├── prettier.config.js ├── public ├── favicon.ico └── images │ └── global │ ├── DEV-KIT.png │ ├── logo-dark.png │ ├── logo-light.png │ └── logo-mini.png ├── src ├── app │ └── [locale] │ │ ├── (land) │ │ ├── _components │ │ │ ├── header │ │ │ │ └── index.tsx │ │ │ └── test │ │ │ │ └── index.tsx │ │ └── page.tsx │ │ ├── auth │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── loading.tsx ├── components │ ├── common │ │ ├── form-generator │ │ │ └── index.tsx │ │ ├── loader-renderer │ │ │ └── index.tsx │ │ ├── skeleton-renderer │ │ │ └── index.tsx │ │ └── trans-renderer │ │ │ └── index.tsx │ ├── forms │ │ └── auth │ │ │ ├── index.tsx │ │ │ └── schema.ts │ ├── global │ │ ├── app-auth │ │ │ └── index.tsx │ │ ├── app-chat │ │ │ └── index.tsx │ │ ├── app-client │ │ │ └── index.tsx │ │ ├── app-footer │ │ │ └── index.tsx │ │ ├── app-logo │ │ │ └── index.tsx │ │ ├── app-message │ │ │ └── index.tsx │ │ ├── app-navbar │ │ │ ├── index.tsx │ │ │ ├── info-modal.tsx │ │ │ ├── lang-switcher.tsx │ │ │ └── theme-switcher.tsx │ │ ├── app-query │ │ │ └── index.tsx │ │ └── app-theme │ │ │ └── index.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── button.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── skeleton.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ └── toaster.tsx ├── constants │ ├── forms.ts │ ├── index.ts │ ├── menus.tsx │ └── options.ts ├── env.ts ├── hooks │ ├── auth │ │ └── index.ts │ └── global │ │ ├── index.ts │ │ ├── use-client-translation.ts │ │ ├── use-domain.ts │ │ ├── use-info.ts │ │ ├── use-is-authed.ts │ │ ├── use-is-mobile.ts │ │ ├── use-locale-router.ts │ │ ├── use-theme.ts │ │ └── use-toast.ts ├── i18n │ ├── client.ts │ ├── config.ts │ ├── index.ts │ └── locales │ │ ├── en │ │ ├── auth.json │ │ ├── global.json │ │ └── land.json │ │ ├── ja │ │ ├── auth.json │ │ ├── global.json │ │ └── land.json │ │ └── zh │ │ ├── auth.json │ │ ├── global.json │ │ └── land.json ├── icons │ ├── auth.tsx │ ├── global.tsx │ └── index.tsx ├── lib │ ├── api.ts │ ├── mitt.ts │ └── utils.ts ├── middleware.ts ├── services │ └── auth.ts ├── stores │ ├── index.ts │ └── slices │ │ └── config-slice.ts ├── styles │ ├── globals.css │ └── info.css └── types │ └── index.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | src/components/ui -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/README_ja.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/README_zh.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/package.json -------------------------------------------------------------------------------- /pm2-deploy.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/pm2-deploy.cjs -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/global/DEV-KIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/public/images/global/DEV-KIT.png -------------------------------------------------------------------------------- /public/images/global/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/public/images/global/logo-dark.png -------------------------------------------------------------------------------- /public/images/global/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/public/images/global/logo-light.png -------------------------------------------------------------------------------- /public/images/global/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/public/images/global/logo-mini.png -------------------------------------------------------------------------------- /src/app/[locale]/(land)/_components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/app/[locale]/(land)/_components/header/index.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(land)/_components/test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/app/[locale]/(land)/_components/test/index.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(land)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/app/[locale]/(land)/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/app/[locale]/auth/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/app/[locale]/loading.tsx -------------------------------------------------------------------------------- /src/components/common/form-generator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/common/form-generator/index.tsx -------------------------------------------------------------------------------- /src/components/common/loader-renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/common/loader-renderer/index.tsx -------------------------------------------------------------------------------- /src/components/common/skeleton-renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/common/skeleton-renderer/index.tsx -------------------------------------------------------------------------------- /src/components/common/trans-renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/common/trans-renderer/index.tsx -------------------------------------------------------------------------------- /src/components/forms/auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/forms/auth/index.tsx -------------------------------------------------------------------------------- /src/components/forms/auth/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/forms/auth/schema.ts -------------------------------------------------------------------------------- /src/components/global/app-auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-auth/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-chat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-chat/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-client/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-footer/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-logo/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-message/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-navbar/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-navbar/info-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-navbar/info-modal.tsx -------------------------------------------------------------------------------- /src/components/global/app-navbar/lang-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-navbar/lang-switcher.tsx -------------------------------------------------------------------------------- /src/components/global/app-navbar/theme-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-navbar/theme-switcher.tsx -------------------------------------------------------------------------------- /src/components/global/app-query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-query/index.tsx -------------------------------------------------------------------------------- /src/components/global/app-theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/global/app-theme/index.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/constants/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/constants/forms.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/constants/menus.tsx -------------------------------------------------------------------------------- /src/constants/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/constants/options.ts -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/hooks/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/auth/index.ts -------------------------------------------------------------------------------- /src/hooks/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/index.ts -------------------------------------------------------------------------------- /src/hooks/global/use-client-translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-client-translation.ts -------------------------------------------------------------------------------- /src/hooks/global/use-domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-domain.ts -------------------------------------------------------------------------------- /src/hooks/global/use-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-info.ts -------------------------------------------------------------------------------- /src/hooks/global/use-is-authed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-is-authed.ts -------------------------------------------------------------------------------- /src/hooks/global/use-is-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-is-mobile.ts -------------------------------------------------------------------------------- /src/hooks/global/use-locale-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-locale-router.ts -------------------------------------------------------------------------------- /src/hooks/global/use-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-theme.ts -------------------------------------------------------------------------------- /src/hooks/global/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/hooks/global/use-toast.ts -------------------------------------------------------------------------------- /src/i18n/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/client.ts -------------------------------------------------------------------------------- /src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/config.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales/en/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/en/auth.json -------------------------------------------------------------------------------- /src/i18n/locales/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/en/global.json -------------------------------------------------------------------------------- /src/i18n/locales/en/land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/en/land.json -------------------------------------------------------------------------------- /src/i18n/locales/ja/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/ja/auth.json -------------------------------------------------------------------------------- /src/i18n/locales/ja/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/ja/global.json -------------------------------------------------------------------------------- /src/i18n/locales/ja/land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/ja/land.json -------------------------------------------------------------------------------- /src/i18n/locales/zh/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/zh/auth.json -------------------------------------------------------------------------------- /src/i18n/locales/zh/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/zh/global.json -------------------------------------------------------------------------------- /src/i18n/locales/zh/land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/i18n/locales/zh/land.json -------------------------------------------------------------------------------- /src/icons/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/icons/auth.tsx -------------------------------------------------------------------------------- /src/icons/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/icons/global.tsx -------------------------------------------------------------------------------- /src/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/icons/index.tsx -------------------------------------------------------------------------------- /src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/lib/api.ts -------------------------------------------------------------------------------- /src/lib/mitt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/lib/mitt.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/services/auth.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/slices/config-slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/stores/slices/config-slice.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/src/styles/info.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/302ai/302-Dev-Kit/HEAD/tsconfig.json --------------------------------------------------------------------------------