Single logoKimi UI v1.0.0
⌘K

Support & Resources

Get help, find answers, and connect with the KimiStores community


Documentation

Official documentation resources to help you build with KimiStores

Getting Started Guides

Step-by-step tutorials for new users

NextJS Setup
Vite Setup
Theme Configuration
Component API References

Detailed API documentation for all components

UI Components
Custom Hooks
Utilities

Frequently Asked Questions

Common questions and answers about using Kimi UI

How do I customize the theme?

Theme customization is managed through the src/theme directory. You can modify colors, typography, shadows, and other theme properties by editing the appropriate files in this directory. For detailed instructions, see the Theme Customization documentation section.

How do I add new components?

New components should be added to the appropriate directory based on their scope and reusability:

  • Page-specific components: Add to the src/sections directory

  • Reusable UI components: Add to src/components or shared/src/components for cross-app use

  • Complex widgets: Add to src/widgets directory

How do I contribute to shared components?

Shared components in the shared directory are used across multiple apps. When modifying these components, make sure to:

  • • Test in all apps that use the component

  • • Update documentation in the docs app

  • • Follow the project coding guidelines


Getting Help

Ways to get support when you're stuck

GitHub Issues

Submit bug reports and feature requests through our issue tracker

View GitHub Issues
Email Support

For premium users, reach out to our dedicated support team


Contribute

Help improve KimiStores by contributing to the project

# Clone the repository
git clone https://github.com/kimistores/kimistores.git

# Install dependencies
cd kimistores
yarn install

# Start the development server
yarn dev

# Run tests
yarn test
Contribution Guidelines
  • • Follow the coding style guidelines in eslint.config.mjs

  • • Write tests for new features and bug fixes

  • • Update documentation for any changes

  • • Submit pull requests for review