package templates import ( "portfolio-tracker/internal/model" "portfolio-tracker/internal/web/templates/components" ) templ DashboardContent(username string) {

Willkommen, { username }!

Hier ist dein Dashboard.

Hier können Sie Ihre Portfolio-Übersicht einsehen.

} templ Result(authenticated bool, username string, portfolios []model.Portfolio) { @components.PageLayout(authenticated, username, "Dashboard", DashboardContent(username), portfolios) }