English | 日本語
Rotion is a set of components and tools that utilize the Notion API and React to generate a static website from your Notion databases and pages.
It is designed primarily for use with Next.js (or other React frameworks) and stores images and other files locally, so that you can build a fully static site.
Official site: https://rotion.linyo.ws
- Fetch and convert Notion databases and pages into static site data via the Notion API.
- Local storage of images, PDFs, and other files.
- Rich React components (Gallery, Table, List, Page, and various Blocks).
- Compatible with static site generators such as Next.js.
- Next.js App Router support with
createClientLinkhelper (v2.0.1+). - Next.js Page Router support for traditional SSG workflows.
- TypeScript support.
npm install rotionor
yarn add rotionCreate a Notion integration and obtain your API key and database ID:
- Go to Notion Integrations
- Create a new integration
- Copy the integration token
- Share your Notion pages/databases with the integration
- Copy the page/database IDs from their URLs
Use the APIs under rotion to fetch data from Notion:
import { FetchDatabase, FetchBlocks, FetchPage } from 'rotion'
// Fetch a database
const db = await FetchDatabase({ database_id: 'YOUR_DATABASE_ID' })
// Fetch page blocks
const blocks = await FetchBlocks({ block_id: 'YOUR_PAGE_ID' })
// Fetch page information
const page = await FetchPage({ page_id: 'YOUR_PAGE_ID' })For Next.js App Router, you need to set up the createClientLink helper:
Step 1: Create app/lib/rotion.ts:
'use client'
import { createClientLink } from 'rotion/ui'
import NextLink from 'next/link'
export const ClientLink = createClientLink(NextLink)Step 2: Use in your Server Components:
// app/page.tsx
import { Page } from 'rotion/ui'
import { FetchBlocks } from 'rotion'
import { ClientLink } from './lib/rotion'
import type { Link } from 'rotion/ui'
export default async function MyPage() {
const blocks = await FetchBlocks({ block_id: 'YOUR_PAGE_ID' })
return <Page blocks={blocks} link={ClientLink as Link} />
}For Page Router, you can use Next.js Link directly:
// pages/index.tsx
import type { GetStaticProps } from 'next'
import { Page } from 'rotion/ui'
import { FetchBlocks } from 'rotion'
import NextLink from 'next/link'
export const getStaticProps: GetStaticProps = async () => {
const blocks = await FetchBlocks({ block_id: 'YOUR_PAGE_ID' })
return { props: { blocks } }
}
export default function MyPage({ blocks }) {
return <Page blocks={blocks} link={NextLink} />
}Display Notion databases in different formats:
import { Gallery, Table, List } from 'rotion/ui'
import { FetchDatabase } from 'rotion'
const db = await FetchDatabase({ database_id: 'YOUR_DATABASE_ID' })
// Gallery view
<Gallery db={db} keys={['Name', 'Description', 'Image']} />
// Table view
<Table db={db} keys={['Name', 'Status', 'Date']} />
// List view
<List db={db} keys={['Name', 'Tags']} />FetchDatabase– Fetches and caches a Notion databaseFetchBlocks– Fetches and caches page blocksFetchPage– Fetches page informationFetchBreadcrumbs– Fetches breadcrumb information
Database Views:
Gallery– Gallery view for databasesTable– Table view for databasesList– List view for databases
Page & Blocks:
Page– Renders a complete Notion page- Various Block components (TextBlock, ImageBlock, CodeBlock, CalloutBlock, etc.)
Utilities:
Icon– Renders Notion iconsRichText– Renders Notion rich textCheckbox– Renders checkboxescreateClientLink– Helper for Next.js App Router (v2.0.1+)
npm run build– Build.npm run test– Run tests.npm run story– Launch Storybook.
- Node.js 18 or later (recommended)
- React 17, 18, or 19
- Next.js 13+ (for App Router features, Next.js 15+ recommended)
MIT