Skip to content

Commit

Permalink
Merge pull request #8 from ai-buddies/dev-1
Browse files Browse the repository at this point in the history
added new pages
  • Loading branch information
ajay-dhangar authored Oct 26, 2024
2 parents 086935b + 5e0af8d commit d3f6413
Show file tree
Hide file tree
Showing 20 changed files with 4,738 additions and 2,554 deletions.
2 changes: 1 addition & 1 deletion docs/ai-fundamentals/_category_.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"position": 3,
"link": {
"type": "generated-index",
"description": "Now Getting Started, With AI World!"
"description": "AI Fundamentals Learning Path for Beginners with AI Buddies. Learn AI Fundamentals with AI Buddies."
}
}
2 changes: 1 addition & 1 deletion docs/ai-fundamentals/types-of-ai/_category_.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"position": 3,
"link": {
"type": "generated-index",
"description": "Now Getting Started, With AI World!"
"description": "Types of AI Learning Path for Beginners with AI Buddies. Learn Types of AI with AIBuddies."
}
}
2 changes: 1 addition & 1 deletion docs/getting-started/_category_.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"position": 2,
"link": {
"type": "generated-index",
"description": "Getting Started AI Learning Path for Beginners with AI Buddies"
"description": "Getting Started AI Learning Path for Beginners with AI Buddies. Learn AI from scratch with AI Buddies."
}
}
2 changes: 1 addition & 1 deletion docs/machine-learning/_category_.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"position": 4,
"link": {
"type": "generated-index",
"description": "Now Getting Started, With AI World!"
"description": "Machine Learning Learning Path for Beginners with AI Buddies. Learn Machine Learning with AI Buddies."
}
}
28 changes: 28 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { themes as prismThemes } from "prism-react-renderer";
import type { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
import tailwindPlugin from "./plugins/tailwind-config.cjs";
import remarkMath from 'remark-math';
import rehypeKatex from 'rehype-katex';

const config: Config = {
title: "AIBuddies",
Expand Down Expand Up @@ -36,14 +38,19 @@ const config: Config = {
{
docs: {
sidebarPath: "./sidebars.ts",
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
editUrl:
"https://github.com/ai-buddies/ai-buddies.github.io/tree/main/",
},
blog: {
showReadingTime: true,
remarkPlugins: [remarkMath],
rehypePlugins: [rehypeKatex],
editUrl:
"https://github.com/ai-buddies/ai-buddies.github.io/tree/main/",
},

theme: {
customCss: "./src/css/custom.css",
},
Expand Down Expand Up @@ -80,6 +87,22 @@ const config: Config = {
],
],

markdown: {
mermaid: true,
},

themes: ['@docusaurus/theme-mermaid'],

stylesheets: [
{
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css',
type: 'text/css',
integrity:
'sha384-odtC+0UGzzFL/6PNoE8rX/SPcQDXBJ+uRepguP4QkPCm2LBxH3FA3y+fKSiJ+AmM',
crossorigin: 'anonymous',
},
],

themeConfig: {
// Replace with your project's social card
image: "img/docusaurus-social-card.jpg",
Expand All @@ -96,6 +119,11 @@ const config: Config = {
position: "left",
label: "Tutorial",
},
{
label: "Learning Paths",
to: "/learning-paths",
position: "left",
},
{
to: "/blog",
label: "Blog",
Expand Down
Loading

0 comments on commit d3f6413

Please sign in to comment.