Installation

To add Ariadocs to your project, follow the steps below.

Prerequisites

Before getting started, make sure you have:

  • Node.js (latest recommended)
  • npm or yarn

Setup

Install the package using:

npm install ariadocs

or

yarn add ariadocs

Basic Usage

After installation, you can import and use components like this:

import { DocsProvider } from "ariadocs";

export default function App() {
  return (
    <DocsProvider>
      <div>Hello, Ariadocs!</div>
    </DocsProvider>
  );
}

Notes

  • Ensure your configuration is set up correctly
  • Custom theming is supported

Summary

You’ve successfully installed Ariadocs. Next, explore advanced configuration and features.