package components
import "strings"
import "github.com/haydenhargreaves/Potion/internal/domain/server"
templ navLink(current, name, url string) {
{ name }
}
templ dropdownLink(name, url string) {
{ name }
}
templ listIcon(current, name, url string) {
}
templ Navbar(current string) {
}
templ hamburgerMenu() {
@dropdownLink("Home", domain.WEB_HOME)
@dropdownLink("Favorites", domain.WEB_FAVORITES)
@dropdownLink("Create", domain.WEB_CREATE)
@dropdownLink("Profile", domain.WEB_PROFIlE)
@dropdownLink("Shopping List", domain.WEB_LIST)
}