If you prefer more control over the integration process, you can set up Agimon manually. This guide will walk you through integrating Agimon CMS using our React-based UI library.
Install the Agimon CMS React package:
Copy npm install @agimonai/cms-react
Copy pnpm add @agimonai/cms-react
Copy yarn add @agimonai/cms-react
Initialize the API client and component builders:
Copy import { APIClientConfig, buildComponentMap, createApiClient } from '@agimonai/cms-react'; import Link from 'next/link'; const apiConfig: APIClientConfig = { apiKey: process.env.AGIMON_API_KEY || '', }; export const apiClient = createApiClient(apiConfig); export const componentMap = buildComponentMap({ platformComponents: { Link: Link, }, apiConfig, });
For Next.js app directory, use our NextBuilder class:
Copy import { NextBuilder } from '@agimonai/cms-react'; export const pageBuilder = new NextBuilder(apiClient, componentMap, { staticRender: true });
Create a dynamic route page (e.g.,
app/blog/[blog-slug]/page.tsx
Copy import type { Metadata } from 'next'; import { pageBuilder } from '../../../agimonConfig'; const pattern = '/blog/:blog-slug'; export const generateStaticParams = async () => { return pageBuilder.generateStaticParams(pattern); }; type PageProps = { params: { ["blog-slug"]: string; }; searchParams: Record<string, string>; }; export async function generateMetadata({ params }: PageProps): Promise<Metadata> { return await pageBuilder.generateMetadata(pattern, params); } const Page = async ({ params, searchParams }: PageProps) => { return await pageBuilder.buildPage(pattern, params, searchParams); }; export default Page;
For other React frameworks, use the PageService directly:
Copy import { PageService } from '@agimonai/cms-core'; const pageService = PageService(apiClient); // List pages using url-pattern configured in dashboard const pagesData = await pageService.listPages(pattern); // Get page using pathname that matches the url pattern const pageData = await pageService.getPage(pathname);
Render the page content:
Copy const { blocks, ...data } = (pageData?.data || {}); return ( <> {(blocks || []).map((block: IBlock) => { const Component = componentMap[block.content_type]; if (!Component) return null; return ( <div key={block.id}> <Component staticRender={staticRender} page={data} {...(block as any)} /> </div> ); })} </> );
Choose the appropriate CSS import based on your project's setup:
Copy import '@agimonai/cms-react/defaultTheme.css'; import '@agimonai/cms-react/minimal.css';
Copy import '@agimonai/cms-react/style.css';
Copy import '@agimonai/cms-react/fixedTheme.css'; // or import '@agimonai/cms-react/fixedStyle.css';
The package provides modern React components specifically designed for CMS interfaces, including integration with BlockNote for rich text editing and theme customization support.
To generate a sitemap for your content:
Copy import { SitemapService } from '@agimonai/cms-core'; const sitemapService = new SitemapService(apiClient); const sitemapData = await sitemapService.getSitemap();