Docusaurus plugins for Logos websites
Go to file
ci-acid-info[bot] 0be1623c3e v1.0.0-alpha.171 2024-04-29 16:59:55 +00:00
.github feat: add issue and pull request templates 2024-02-07 23:49:00 +09:00
.husky plugins init commit 2022-10-19 18:07:59 +03:30
packages v1.0.0-alpha.171 2024-04-29 16:59:55 +00:00
.gitignore update gitignore to ignore the static generated data 2023-11-10 22:47:01 +00:00
.prettierignore plugins init commit 2022-10-19 18:07:59 +03:30
.prettierrc init commit 2022-10-06 19:34:52 +03:30
CHANGELOG.md v1.0.0-alpha.171 2024-04-29 16:59:55 +00:00
CONTRIBUTING.md chore: update docs 2023-10-30 07:47:53 +03:30
README.md chore: update README 2024-03-22 04:36:17 +09:00
docs.json chore: update docs 2023-10-30 07:47:53 +03:30
lerna.json v1.0.0-alpha.171 2024-04-29 16:59:55 +00:00
package.json update navbar 2023-06-01 00:28:31 +09:00
tsconfig.json plugins init commit 2022-10-19 18:07:59 +03:30
yarn.lock feat: implement design update requests 2024-03-22 04:36:17 +09:00

README.md

Overview

This repository contains a set of Docusaurus 2 plugins and themes, initially crafted for Logos websites but versatile enough for use with any Docusaurus website. The collection includes a headless local search, OG image generation, and Fathom Analytics plugins.

Quick start

Use a template

Kickstart your website creation with our ready-to-use templates. Choose a template that fits your needs, whether it's a documentation, a blog, or a complete website.

  1. Choose a template:
  1. Clone your selected template:
# Example: Create a website with a landing page
git clone https://github.com/acid-info/logos-homepage-template.git my-website && cd my-website

# Example: Create a documentation website
git clone https://github.com/acid-info/logos-documentation-website-template.git my-website && cd my-website

# Example: create a blog
git clone https://github.com/acid-info/logos-blog-template.git my-website && cd my-website
  1. Install the dependencies:
yarn install
  1. Run your new website locally:
yarn start

Use with an existing Docusaurus website:

  1. Install the Logos Docusaurus preset:
yarn add @acid-info/logos-docusaurus-preset
  1. Add the preset to your docusaurus.config.js:
presets: [
    [
      '@acid-info/logos-docusaurus-preset',
      /** @type {import('@acid-info/logos-docusaurus-preset').PluginOptions} */
      ({
        businessUnit: 'Logos',
      }),
    ],
  ],

Use the playground

A playground located in the packages/docusaurus-playground of this repository can be used to test the plugins and themes locally.

  1. Clone the repository:
git clone https://github.com/acid-info/logos-docusaurus-plugins.git
  1. Install the dependencies:
yarn install && yarn link
  1. Run the playground:
yarn start

Next steps

Working on content

Our plugins work smoothly with standard Docusaurus features, which you can use to manage and organize content. Learn more on the Docusaurus website. For practical guidance on dealing with common use cases, visit our dedicated Wiki pages.

Configuration

While it's possible to install and configure our plugins and themes individually, we highly recommend using the Logos Docusaurus preset for a simplified installation. This preset establishes a default configuration for the plugins and theme and automatically incorporates essential website metadata, logos, and favicons for the selected business unit. For detailed configuration information, please refer to the README file of each package.

Become a contributor

We welcome any kind of contribution, such as reporting issues, suggesting features, writing documentation or fixing bugs. Please read our contributing guidelines on how to get started.

Packages