import novdom/attribute.{tailwind} import novdom/component.{type Component} import novdom/html.{div, text} pub fn hello_world() -> Component { div([tailwind("p-5 bg-blue-500 text-white")], [text([], "Hello, world!")]) }