pohon-ui
v2.0.0-rc1.2
Published
A UI Library for Modern Web Apps, powered by Vue & UnoCSS.
Maintainers
Readme
Pohon UI
Pohon UI harnesses the combined strengths of Akar, UnoCSS, and UnoCss Variants to offer developers an unparalleled set of tools for creating sophisticated, accessible, and highly performant user interfaces.
[!NOTE] You are on the
v4branch, check out the v3 branch for Pohon UI v3 or v2 branch for Pohon UI v2.
Documentation
Visit https://pohon.vinicunca.dev to explore the documentation.
Templates
Kickstart your project with one of our ready-to-use Pohon UI templates or follow the Installation Guide. Explore all available templates on the official templates page.
- Starter — A minimal template to get started with Pohon UI.
- Landing — A modern landing page template powered by Nuxt Content.
- Docs — A documentation template powered by Nuxt Content.
- SaaS — A SaaS template with landing, pricing, docs and blog powered by Nuxt Content.
- Dashboard — A dashboard template with multi-column layout.
- Chat — An AI chatbot template with GitHub authentication and persistent chat history powered by Vercel AI SDK.
- Portfolio — A sleek portfolio template to showcase your work, skills and blog powered by Nuxt Content.
- Changelog — A changelog template to display your repository releases notes from GitHub powered by Nuxt MDC.
- Editor — A rich text editor template powered by TipTap with support for markdown, HTML, and JSON content types.
Installation
pnpm add pohon-ui tailwindcssyarn add pohon-ui tailwindcssnpm install pohon-ui tailwindcssbun add pohon-ui tailwindcssNuxt
- Add the Pohon UI module in your
nuxt.config.ts:
export default defineNuxtConfig({
modules: ['pohon-ui'],
css: ['~/assets/css/main.css']
});- Import UnoCSS and Pohon UI in your CSS:
@import "tailwindcss";
@import "pohon-ui";Learn more in the installation guide.
Vue
- Add the Pohon UI Vite plugin in your
vite.config.ts:
import vue from '@vitejs/plugin-vue';
import ui from 'pohon-ui/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
vue(),
ui()
]
});- Use the Pohon UI Vue plugin in your
main.ts:
import ui from 'pohon-ui/vue-plugin';
import { createApp } from 'vue';
import { createRouter, createWebHistory } from 'vue-router';
import App from './App.vue';
import './assets/css/main.css';
const app = createApp(App);
const router = createRouter({
routes: [],
history: createWebHistory()
});
app.use(router);
app.use(ui);
app.mount('#app');- Import UnoCSS and Pohon UI in your CSS:
@import "tailwindcss";
@import "pohon-ui";Learn more in the installation guide.
Contribution
Thank you for considering contributing to Pohon UI. Here are a few ways you can get involved:
- Reporting Bugs: If you come across any bugs or issues, please check out the reporting bugs guide to learn how to submit a bug report.
- Suggestions: Have any thoughts to enhance Pohon UI? We'd love to hear them! Check out the contribution guide to share your suggestions.
[!TIP] We provide contributing guidelines through
AGENTS.mdfor AI assistants to help you contribute to Pohon UI. It is automatically picked up by all AI coding agents and guides through component structure, theming patterns, testing conventions, and documentation guidelines.
Local Development
Follow the docs to set up your local development environment and contribute.
Credits
License
Licensed under the MIT license.
