# Installation ## 1. Install the package ```bash npm install @hykocx/zen ``` ## 2. Install the styles Add the following line to your `globals.css` file: ```css @import '@hykocx/zen/styles/zen.css'; ``` ## 3. Add ZenProvider to your root layout Wrap your application with the `ZenProvider` in your root layout to enable toast notifications globally: ```javascript // app/layout.js import './globals.css'; import { ZenProvider } from '@hykocx/zen/provider'; export const metadata = { title: 'My App', }; export default function RootLayout({ children }) { return (