Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions aria/contents/docs/architecture/api/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: API Overview
description: This section provides an api overview of the Mega project.
---

<Outlet path="architecture/api" />
4 changes: 4 additions & 0 deletions aria/contents/docs/architecture/api/mega/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Mega API Reference
description: This section provides an api reference of the mono submodule.
---
4 changes: 4 additions & 0 deletions aria/contents/docs/architecture/api/mono/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Mono API Reference
description: This section provides an api reference of the mono submodule.
---
6 changes: 6 additions & 0 deletions aria/contents/docs/architecture/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Architecture
description: This section provides an architectural overview of the Mega project.
---

<Outlet path="architecture" />
2 changes: 1 addition & 1 deletion aria/contents/docs/components/index.mdx
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
14 changes: 14 additions & 0 deletions aria/lib/routes-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
18 changes: 9 additions & 9 deletions aria/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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"
}
}