package home import "templ-test/views/components/bootstrap" import "templ-test/views/layout" templ Home() { @layout.WithLayout("Home", true) {
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.BootstrapButton("I am the darkness", bootstrap.VariantDark) } }