diff --git a/website/docs/getting-started.md b/website/docs/getting-started.mdx similarity index 88% rename from website/docs/getting-started.md rename to website/docs/getting-started.mdx index 7df969141..78e0860e8 100644 --- a/website/docs/getting-started.md +++ b/website/docs/getting-started.mdx @@ -1,6 +1,7 @@ --- sidebar_position: 0 --- + # 👋 Getting Started Tabby is an open-source, self-hosted AI coding assistant. With Tabby, every team can set up its own LLM-powered code completion server with ease. @@ -9,6 +10,17 @@ Tabby is an open-source, self-hosted AI coding assistant. With Tabby, every team [![Follow on Linkedin](https://shields.io/badge/Follow%20on%20Linkedin-e29351?logo=linkedin)](https://www.linkedin.com/company/tabbyml/) [![Star on Github](https://img.shields.io/github/stars/TabbyML/tabby?labelColor=e29351&label=Star&color=ffffff&logo=github)](https://github.com/TabbyML/tabby) +
+
+ +
+ +

Product demo to bring Tabby onto your Mac in 3 simple steps

+
+ ## 📄 About the Docs | Section | Goal | diff --git a/website/tailwind.config.js b/website/tailwind.config.js index c40f8b753..5763bb42c 100644 --- a/website/tailwind.config.js +++ b/website/tailwind.config.js @@ -4,8 +4,8 @@ module.exports = { corePlugins: { preflight: false, // disable Tailwind's reset }, - content: ["./src/**/*.{js,jsx,ts,tsx}", "../docs/**/*.mdx"], // my markdown stuff is in ../docs, not /src - darkMode: ['class', '[data-theme="dark"]'], // hooks into docusaurus' dark mode settigns + content: ["./src/**/*.{js,jsx,ts,tsx}", "./docs/**/*.mdx"], + darkMode: ['class', '[data-theme="dark"]'], theme: { extend: {}, },