Main Menu

Configure the main menu by editing the config.toml

# config.toml

# Main Menu
[[menu.main]]
    name = "Product"
    url = "/product/"
    weight = 1

[[menu.main]]
    name = "Pricing"
    url = "/pricing/"
    weight = 2

[[menu.main]]
    name = "Blog"
    url = "/posts/"
    weight = 3

[[menu.main]]
    name = "Login"
    url = "/login/"
    weight = 4

[[menu.main]]
    name = "Sign Up"
    url = "/signup/"
    weight = 5

You can add new menu items.

[[menu.main]]
    name = "About"
    url = "/about/"
    weight = 6