Website Development on Payload CMS

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Payload CMS Website Development

Payload CMS — headless CMS on Node.js with TypeScript-first approach. Configuration is code, not GUI: collections, fields, hooks, access control described in TypeScript files. This means type safety, IDE refactoring, code review in git. Database — MongoDB or PostgreSQL via Drizzle ORM. Admin panel auto-generates from config.

Project Architecture

Payload works as monolith (CMS + frontend in one Next.js app) or standalone API:

Monolith (recommended):
├── app/                   # Next.js App Router
│   ├── (frontend)/        # Public pages
│   └── (payload)/         # Admin panel: /admin
├── payload.config.ts      # CMS Configuration
├── collections/           # Content types
└── globals/               # Global settings

Project Creation

npx create-payload-app@latest my-site
# Select: template = website, database = PostgreSQL or MongoDB
cd my-site
npm install
npm run dev
# Admin: http://localhost:3000/admin

Collections

Collection — content type with fields:

// collections/Posts.ts
import { CollectionConfig } from 'payload/types'

const Posts: CollectionConfig = {
  slug: 'posts',
  admin: {
    useAsTitle: 'title',
    defaultColumns: ['title', 'status', 'publishedAt'],
  },
  access: {
    read: () => true,
    create: ({ req }) => req.user?.role === 'admin',
    update: ({ req }) => req.user?.role === 'admin',
  },
  fields: [
    { name: 'title', type: 'text', required: true },
    { name: 'slug', type: 'text', unique: true },
    { name: 'content', type: 'richText' },
    { name: 'status', type: 'select', options: ['draft', 'published'], defaultValue: 'draft' },
    { name: 'publishedAt', type: 'date' },
    { name: 'featuredImage', type: 'upload', relationTo: 'media' },
  ],
  hooks: {
    beforeChange: [
      ({ data }) => {
        if (!data.slug && data.title) {
          data.slug = data.title.toLowerCase().replace(/\s+/g, '-').replace(/[^\w-]/g, '')
        }
        return data
      }
    ],
  },
}

export default Posts

Rendering in Next.js

// app/(frontend)/[slug]/page.tsx
import { getPayloadHMR } from '@payloadcms/next/utilities'
import configPromise from '@payload-config'
import { notFound } from 'next/navigation'

export default async function Page({ params }: { params: { slug: string } }) {
  const payload = await getPayloadHMR({ config: configPromise })

  const result = await payload.find({
    collection: 'pages',
    where: { slug: { equals: params.slug }, status: { equals: 'published' } },
    limit: 1,
  })

  const page = result.docs[0]
  if (!page) notFound()

  return (
    <main>
      <h1>{page.title}</h1>
      <RichText content={page.content} />
    </main>
  )
}

Typical Tech Stack

Layer Technology
CMS + Admin Payload CMS 2.x
Frontend Next.js 14 App Router
Database PostgreSQL + Drizzle
Media Cloudflare R2 / AWS S3
Search Payload built-in / Algolia
Email Resend / Nodemailer
Deploy Vercel / Railway

Timeline

Basic site with 3–5 content types: 2–3 weeks. Complex project with custom fields, i18n: 4–8 weeks.