TrademarkTrademarkTrademarkTrademark
Products
Resources
April 23, 2025

Work section

Lorant
Work section
You can create, edit and delete projects by adding, modifying or removing *.mdx files in the src/app/work/projects directory. The frontmatter is used to set the project's metadata: title, description, image, and tags. It's used in the project's page and in meta- and open graph tags.
src/app/work/projects/project-1.mdx
---
title: "Developing a design system for indie creators"
publishedAt: "2025-03-17"
summary: "Once UI is a design system that empowers indie creators, small teams, and startups to build web applications."
images:
- "/images/projects/project-01/cover-02.jpg"
- "/images/projects/project-01/image-03.jpg"
team:
- name: "Lorant One"
  role: "Software Engineer"
  avatar: "/images/avatar.jpg"
  linkedIn: "https://www.linkedin.com/company/once-ui/"
link: "https://once-ui.com/"
---
You can use MDX to write the content of your projects. It helps you write rich and dynamic content with minimal code. Some MDX elements will be automatically transformed to Once UI components to integrate better in the design and add additional functionality. You can use custom components in MDX files, but you need to import them first in the src/components/mdx.tsx file.
src/components/mdx.tsx
const components = {
  p: createParagraph as any,
  h1: createHeading(1) as any,
  h2: createHeading(2) as any,
  h3: createHeading(3) as any,
  h4: createHeading(4) as any,
  h5: createHeading(5) as any,
  h6: createHeading(6) as any,
  img: createImage as any,
  a: CustomLink as any,
  Table,
  CodeBlock,
};
As you can see, the Table and CodeBlock components are already imported and available for use. You can add more by simply importing them to this file and passing them to the components object. Hot reload of MDX files is currently not supported, but we're working on it.
On this page

Build the future.

Start now