Search Apps Documentation Source Content File Folder Download Copy Actions Download

page_newsletter.gno

0.55 Kb ยท 23 lines
 1package gnopages
 2
 3import (
 4	"gno.land/p/leon/svgbtn"
 5)
 6
 7func init() {
 8	path := "newsletter"
 9	title := "Sign up for Gno News"
10	body := "**Stay in the Gno by signing up for our newsletter. You'll get the scoop on dev updates, fresh content, and community news.**\n\n"
11	body += svgbtn.Button(
12		256,
13		44,
14		"#226c57",
15		"#ffffff",
16		"Subscribe to stay in the Gno",
17		"https://land.us18.list-manage.com/subscribe?u=8befe3303cf82796d2c1a1aff&id=271812000b",
18	)
19
20	if err := b.NewPost("", path, title, body, "2025-07-14T00:00:00Z", nil, nil); err != nil {
21		panic(err)
22	}
23}