package layout import "github.com/rjNemo/rentease/internal/i18n" const appName = "🏨 RentEase" templ BaseLayout() { @head() @navbar(i18n.LangFromContext(ctx))
{ children... }
@footer() } templ head() { { i18n.Localize(ctx, "app.title") } } templ navbar(lang string) { } templ footer() { }