You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
First-Website/resources/js/navbar.json.js

40 lines
730 B

Navbar = [
{
name: "Home",
desc: "Ga naar de homepagina",
5 years ago
link: "/",
icon: "fas fa-home"
},
5 years ago
{
name: "Search",
desc: "Zoek iets op",
icon: "fas fa-search",
func: "showSearch()"
},
{
5 years ago
name: "Playground",
desc: "Test je html live!",
link: "/playground",
icon: "fas fa-code"
},
{
name: "Experimenteel",
desc: "Allemaal experimentele dingen",
5 years ago
icon: "fas fa-vial",
dropdown: [
{
name: "Color",
desc: "Mooie regenboog kleurtjes",
5 years ago
link: "/color",
icon: "fas fa-tint"
},
{
name: "Canvas",
desc: "Mijn eerste canvas",
5 years ago
link: "/canvas",
icon: "fas fa-pencil-alt"
}
]
}
]