1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package root import ( "nectar/styles" "nectar/types" "github.com/charmbracelet/lipgloss" ) func Sidebar(globals *types.Globals) string { return styles.BaseStyle. Width(30).Height(globals.Height - 1). BorderRight(true). BorderStyle(lipgloss.NormalBorder()). Render("Sidebar placeholder") }