This package is created for Atom CMS. This SDK currently supports NextJS 13 App Router, and TailwindCSS. All files are built using NextJS server components for API key protection and ratelimiting.
Currently, Atom does not support websites with dark mode.
A video version of this tutorial is available here
Install the following NPM packages
npm i atom-nextjs@latest @tailwindcss/typography
For this example, we will be using /blog
as our primary route for the posts.
Inside of your app/blog/page.tsx
directory, import the package, and render the page.
// app/blog/page.tsx
import { AtomPage } from 'atom-nextjs';
import { cookies } from 'next/headers';
export const metadata = {
title: 'Blog',
};
export default function Blog() {
// Opt of caching using cookies
const _cookies = cookies();
return (
<AtomPage baseRoute="/blog" projectKey={process.env.ATOM_PROJECT_KEY!} />
);
}
Optional: You can also import your own container or styling div to wrap the component.
// app/blog/page.tsx
import { AtomPage } from 'atom-nextjs';
import { MyAppContainer } from '@/...';
import { cookies } from 'next/headers';
export const metadata = {
title: 'Blog',
};
export default function Blog() {
// Opt of caching using cookies
const _cookies = cookies();
return (
<MyAppContainer>
<AtomPage baseRoute="/blog" projectKey={process.env.ATOM_PROJECT_KEY!} />
</MyAppContainer>
);
}
Inside of your app/blog/[id]/page.tsx
directory, import the package, generate the metadata, and render the page.
// app/blog/[id]/page.tsx
import { Atom, generatePostMetadata } from 'atom-nextjs';
export type BlogParams = { params: { id: string } };
export const generateMetadata = async ({ params }: BlogParams) => {
const metadata = await generatePostMetadata(
process.env.ATOM_PROJECT_KEY!,
params.id
);
return metadata;
};
export default async function BlogPage({ params }: BlogParams) {
// Opt of caching using cookies
const _cookies = cookies();
return <Atom projectKey={process.env.ATOM_PROJECT_KEY!} postId={params.id} />;
}
Optional: You can also import your own container or styling div to wrap the component.
// app/blog/[id]/page.tsx
import { Atom, generatePostMetadata } from 'atom-nextjs';
import { MyAppContainer } from '@/...';
export type BlogParams = { params: { id: string } };
export const generateMetadata = async ({ params }: BlogParams) => {
const metadata = await generatePostMetadata(
process.env.ATOM_PROJECT_KEY!,
params.id
);
return metadata;
};
export default async function BlogPage({ params }: BlogParams) {
// Opt of caching using cookies
// Opt of caching using cookies
const _cookies = cookies();
return (
<MyAppContainer>
<Atom projectKey={process.env.ATOM_PROJECT_KEY!} postId={params.id} />
</MyAppContainer>
);
}
To configure your Tailwind CSS file, add the following code:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [...'./node_modules/atom-nextjs/src/components/*.{ts,tsx}'],
theme: {
extend: {},
},
plugins: [...require('@tailwindcss/typography')],
};
Atom also supports having a loading state while the page is loading. To do this, you can import the AtomLoadingSkeleton
component from the package and add it a Suspense
component.
// app/blog/page.tsx
import { AtomLoadingSkeleton, AtomPage } from 'atom-nextjs';
import { Metadata } from 'next';
import { cookies } from 'next/headers';
import { Suspense } from 'react';
export const metadata: Metadata = {
title: 'Blog',
};
export default function Blog() {
// Opt of caching using cookies
const _cookies = cookies();
return (
<Suspense fallback={<AtomLoadingSkeleton />}>
<AtomPage baseRoute="/blog" projectKey={process.env.ATOM_PROJECT_KEY!} />
</Suspense>
);
}
To add it to your article page aswell, you can use the AtomArticleSkeleton
component.
// app/blog/[id]/page.tsx
import { Atom, generatePostMetadatam, ArticleSkeleton } from 'atom-nextjs';
import { MyAppContainer } from '@/...';
import { Suspense } from 'react';
export type BlogParams = { params: { id: string } };
export const generateMetadata = async ({ params }: BlogParams) => {
const metadata = await generatePostMetadata(
process.env.ATOM_PROJECT_KEY!,
params.id
);
return metadata;
};
export default async function BlogPage({ params }: BlogParams) {
// Opt of caching using cookies
const _cookies = cookies();
return (
<Suspense fallback={<AtomArticleSkeleton />}>
<Atom projectKey={process.env.ATOM_PROJECT_KEY!} postId={params.id} />
</Suspense>
);
}
Sitemaps are very important for SEO. To generate a sitemap, you can use the generateSitemap
function from the package.
// app/sitemap.ts
import { MetadataRoute } from 'next';
import { generateSitemap } from 'atom-nextjs';
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
const routes = await generateSitemap(
process.env.ATOM_PROJECT_KEY!,
// Your blog route
'https://atomcms.vercel.app/blog'
);
return [
// Your other sitemap routes
...routes,
];
}
NextJS automatically caches pages for you. This can get a little prolematic when dealing with public pages that have dynamic content - this is why we add the cookies
function to the page. If you want to cache this page, you can remove the cookies
function.
// app/blog/page.tsx
import { AtomPage } from 'atom-nextjs';
import { Metadata } from 'next';
import { cookies } from 'next/headers';
export const metadata: Metadata = {
title: 'Blog',
};
export default function Blog() {
// Commented cookies function to enable caching. NOTE: This may cause the UI to not update after a post is published or updated.
// const _cookies = cookies();
return (
<AtomPage baseRoute="/blog" projectKey={process.env.ATOM_PROJECT_KEY!} />
);
}