package home import "templ-test/views/components/bootstrap" import "templ-test/views/layout" templ Home() { @layout.WithLayout("Home") {

this should be above the alert

@bootstrap.BootstrapAlert("Testing!", bootstrap.VariantDark)

you should now see this under the Alert

@bootstrap.BootstrapButton("I am in danger", bootstrap.VariantDanger, bootstrap.ButtonTypeDefault) @bootstrap.BootstrapButton("I am the darkness", bootstrap.VariantDark, bootstrap.ButtonTypeDefault) } }