diff --git a/aria/contents/docs/architecture/api/index.mdx b/aria/contents/docs/architecture/api/index.mdx new file mode 100644 index 000000000..ec26ad63a --- /dev/null +++ b/aria/contents/docs/architecture/api/index.mdx @@ -0,0 +1,6 @@ +--- +title: API Overview +description: This section provides an api overview of the Mega project. +--- + + diff --git a/aria/contents/docs/architecture/api/mega/index.mdx b/aria/contents/docs/architecture/api/mega/index.mdx new file mode 100644 index 000000000..364c9845b --- /dev/null +++ b/aria/contents/docs/architecture/api/mega/index.mdx @@ -0,0 +1,4 @@ +--- +title: Mega API Reference +description: This section provides an api reference of the mono submodule. +--- diff --git a/aria/contents/docs/architecture/api/mono/index.mdx b/aria/contents/docs/architecture/api/mono/index.mdx new file mode 100644 index 000000000..db015a71f --- /dev/null +++ b/aria/contents/docs/architecture/api/mono/index.mdx @@ -0,0 +1,4 @@ +--- +title: Mono API Reference +description: This section provides an api reference of the mono submodule. +--- diff --git a/aria/contents/docs/architecture/index.mdx b/aria/contents/docs/architecture/index.mdx new file mode 100644 index 000000000..11e9cd432 --- /dev/null +++ b/aria/contents/docs/architecture/index.mdx @@ -0,0 +1,6 @@ +--- +title: Architecture +description: This section provides an architectural overview of the Mega project. +--- + + diff --git a/aria/contents/docs/components/index.mdx b/aria/contents/docs/components/index.mdx index 41506db89..6e8abebcb 100644 --- a/aria/contents/docs/components/index.mdx +++ b/aria/contents/docs/components/index.mdx @@ -1,6 +1,6 @@ --- title: Components -description: This section provides an overview of the custom components available in AriaDocs. +description: This section provides an overview of the custom components available in Mega. --- Explore the custom components we've defined for easy integration and development within your projects. Each component is designed to enhance your workflow and streamline your development process. diff --git a/aria/lib/routes-config.ts b/aria/lib/routes-config.ts index e87fb5354..d6404426e 100644 --- a/aria/lib/routes-config.ts +++ b/aria/lib/routes-config.ts @@ -90,6 +90,20 @@ export const ROUTES: EachRoute[] = [ { title: "Vault", href: "/vault" }, ], }, + { + title: "Architecture", + href: "/architecture", + items: [ + { + title: "API Reference", + href: "/api", + items: [ + { title: "Mono Module", href: "/mono" }, + { title: "Mega Module", href: "/mega" }, + ], + }, + ], + }, { title: "Git", href: "/git", diff --git a/aria/package.json b/aria/package.json index 4563d8f33..5adafeb47 100644 --- a/aria/package.json +++ b/aria/package.json @@ -9,7 +9,7 @@ "lint": "next lint" }, "dependencies": { - "@next/third-parties": "^15.0.3", + "@next/third-parties": "^15.0.4", "@radix-ui/react-accordion": "^1.2.0", "@radix-ui/react-avatar": "^1.1.0", "@radix-ui/react-collapsible": "^1.1.0", @@ -23,11 +23,11 @@ "clsx": "^2.1.1", "gray-matter": "^4.0.3", "lucide-react": "^0.435.0", - "next": "15.0.3", + "next": "15.0.4", "next-mdx-remote": "^5.0.0", "next-themes": "^0.3.0", - "react": "19.0.0-rc-66855b96-20241106", - "react-dom": "19.0.0-rc-66855b96-20241106", + "react": "^19", + "react-dom": "^19", "react-inlinesvg": "^4.1.5", "rehype-autolink-headings": "^7.1.0", "rehype-code-titles": "^1.2.0", @@ -39,14 +39,14 @@ "unist-util-visit": "^5.0.0" }, "devDependencies": { - "@tailwindcss/typography": "^0.5.14", + "@tailwindcss/typography": "^0.5.15", "@types/node": "^20", - "@types/react": "^18", - "@types/react-dom": "^18", + "@types/react": "^19", + "@types/react-dom": "^19", "eslint": "^8", - "eslint-config-next": "15.0.3", + "eslint-config-next": "15.0.4", "postcss": "^8", - "tailwindcss": "^3.4.15", + "tailwindcss": "^3.4.16", "typescript": "^5" } }