Package Exports
- @will_m59/nexus-cms-core
- @will_m59/nexus-cms-core/dist/index.css
Readme
@nexus-cms/core
Modern visual CMS editor with drag-and-drop interface for Next.js applications.
Features
- 🎨 Visual drag-and-drop page builder
- 🔧 Real-time property editing
- 📱 Responsive design preview
- 🌍 Multi-language support
- 💾 Flexible storage adapters
- 🎯 Component-based architecture
- ⚡ Built for Next.js 13+ App Router
Installation
npm install @nexus-cms/core @nexus-cms/componentsQuick Start
import { NexusCMS } from '@nexus-cms/core';
import '@nexus-cms/core/dist/index.css';
function AdminPage() {
const config = {
components: [
// Your component definitions
],
storage: new YourStorageAdapter(),
locales: {
default: 'en',
available: ['en', 'fr']
}
};
return (
<NexusCMS
config={config}
onSave={handleSave}
onPublish={handlePublish}
/>
);
}Documentation
For full documentation, visit https://github.com/zlikeness/nexus-cms
License
MIT