package main import ( "bytes" "context" ) // PastelTextBlock renders text with pastel-dream styling: Nunito body with // generous line-height (1.75) and wider tracking on small caps. func PastelTextBlock(ctx context.Context, content map[string]any) string { text := getString(content, "text") class := getString(content, "class") var buf bytes.Buffer _ = pastelTextComponent(text, class).Render(ctx, &buf) return buf.String() }