Skip to content

Commit

Permalink
Merge pull request #16 from lion-packages/documentation
Browse files Browse the repository at this point in the history
Documentation
  • Loading branch information
Sleon4 authored May 22, 2024
2 parents cf08c7e + 77fe2d1 commit 4c3255f
Show file tree
Hide file tree
Showing 10 changed files with 5,809 additions and 14 deletions.
4 changes: 4 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import DashboardContent from "./pages/DashboardContent";
import LibraryContent from "./pages/LibraryContent";
import FooterNavigation from "./pages/components/FooterNavigation";
import ContentView from "./pages/ContentView";
import LinuxConfiguration from "./pages/LinuxConfiguration";
import Standars from "./pages/Standars";

function App() {
return (
Expand All @@ -16,6 +18,8 @@ function App() {
<Routes>
<Route path="*" element={<NotFound />} />
<Route path="/" element={<DashboardContent />} />
<Route path="standards" element={<Standars />} />
<Route path="linux-configuration" element={<LinuxConfiguration />} />

<Route path="docs/">
<Route path="framework">
Expand Down
6 changes: 6 additions & 0 deletions src/Tools/Content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ import v1_LT from "./Versions/libraries/test/v1_LT";
import v2_FRM from "./Versions/Framework/v2_FRM";
import v2_CMMD from "./Versions/Commands/V2_CMMD";
import v3_LH from "./Versions/libraries/helpers/v3_LH";
import v3_FRM from "./Versions/Framework/v3_FRM";
import v3_CMMD from "./Versions/Commands/V3_CMMD";

export default function Content() {
return {
framework: {
v3: {
docs: v3_FRM(),
commands: v3_CMMD(),
},
v2: {
docs: v2_FRM(),
commands: v2_CMMD(),
Expand Down
10 changes: 10 additions & 0 deletions src/Tools/NavigationLinks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,14 @@ export default [
type: "link",
url: "/docs/library/content",
},
{
display_name: "Standards",
type: "link",
url: "/standards",
},
{
display_name: "Linux configuration",
type: "link",
url: "/linux-configuration",
},
];
Loading

0 comments on commit 4c3255f

Please sign in to comment.