logo
The World’s #1 Bootstrap 5 HTML,
VueJS, React, Angular, Laravel, Asp.Net Core, Blazor, Django & Flask

Admin Dashboard Ecosystem

This is Metronic 7 documentation!

Upon purchase you can get Metronic 7 version from our Github Repository.
Request Github access
The new Metronic 8 is now available with the most advanced Bootstrap 5, VueJS, React and Laravel foundation with a solid light and dark mode design system, extensive utility classes and custom made in-house components.
View Metronic 8 documentation

To use most of the Metronic build tools, Node.js LTS version is required. Version 14.x LTS is recommended. Some of the plugins and framework in Metronic v7 does not support the latest Node.js version. https://nodejs.org/en/

How to create a custom page

Here is the example on how to create your own page and add it to the left side menu and breadcrumbs.

  1. Create page component src/app/pages/MyPage.js

    import React from "react";
                      
    export function MyPage() {
        return <h1>Hello!</h1>
    }   
  2. Update src/app/BasePage.js

    import React from "react";
    import {Redirect, Route, Switch} from "react-router-dom";
    import {LayoutSplashScreen, ContentRoute} from "../_metronic/layout";
    import {BuilderPage} from "./pages/BuilderPage";
    import {DashboardPage} from "./pages/DashboardPage";
    import GoogleMaterialPage from "./google-material/GoogleMaterialPage";
    + import {MyPage} from "./pages/MyPage";
    
    export default function HomePage() {
        return (
            <Switch>
                {
                    /* Redirect from root url to /dashboard. */
                    <Redirect exact={true} from="/" to="/dashboard" />
                }
                      
                <ContentRoute path="/builder" component={Builder} />
                <ContentRoute path="/dashboard" component={Dashboard} />
                <Route path="/google-material" component={GoogleMaterialPage} />
                +    <ContentRoute path="/my-page" component={MyPage} />
            </Switch>
        );
    }    
  3. Add menu in src/_metronic/layout/components/aside/aside-menu/AsideMenuList.js

    
    {/*begin::1 Level*/}
    <li
        className={`menu-item ${getMenuItemActive("/dashboard")}`}
        aria-haspopup="true"
    >
        <NavLink className="menu-link" to="/dashboard">
            <span className="svg-icon menu-icon">
                <SVG src={toAbsoluteUrl("/media/svg/icons/Design/Layers.svg")}/>
            </span>
            <span className="menu-text">Dashboard&l/span>
        </NavLink>
    </li>
    {/*end::1 Level*/}
    
    
    {/*begin::1 Level*/}
    +<li
    +    className={`menu-item ${getMenuItemActive("/my-page")}`}
    +    aria-haspopup="true"
    +>
    +    <NavLink className="menu-link" to="/my-page">
    +        <span className="svg-icon menu-icon">
    +            <SVG src={toAbsoluteUrl("/media/svg/icons/Design/Layers.svg")}/>
    +        </span>
    +        <span className="menu-text">My Page</span>
    +    </NavLink>
    +</li>
    +{/*end::1 Level*/}
    
Metronic: How to create page => Result
Think About The Future, Stay Connected With Us
The More We Learn, The More We Are Able To Innovate & To Develop