diff options
author | Markus Wüstenberg | 2024-10-11 10:47:37 +0200 |
---|---|---|
committer | GitHub | 2024-10-11 10:47:37 +0200 |
commit | e53dba6a6cdbf05d0577e0fa0d61d3c141a641db (patch) | |
tree | 21faf46a952cbf5a654905a8d9ce8a78af3be234 /internal/examples/app/html/home.go | |
parent | 853044729768d3a52d1aba5c9e081737a5088b11 (diff) | |
download | gomponents-e53dba6a6cdbf05d0577e0fa0d61d3c141a641db.tar.lz gomponents-e53dba6a6cdbf05d0577e0fa0d61d3c141a641db.tar.zst gomponents-e53dba6a6cdbf05d0577e0fa0d61d3c141a641db.zip |
Release v1 (#226)
v1.0.0-beta1 gave no problems with my other gomponents libraries, that of others, and some of my large projects, so releasing v1! No more breaking changes! 😁
Diffstat (limited to 'internal/examples/app/html/home.go')
-rw-r--r-- | internal/examples/app/html/home.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/examples/app/html/home.go b/internal/examples/app/html/home.go index c06aa66..5743d38 100644 --- a/internal/examples/app/html/home.go +++ b/internal/examples/app/html/home.go @@ -11,7 +11,7 @@ func HomePage(items []string) Node { P(Text("This is a gomponents example app!")), - P(Raw(`Have a look at the <a href="https://maragu.dev/gomponents/tree/main/internal/examples/app">source code</a> to see how it’s structured.`)), + P(Raw(`Have a look at the <a href="https:/github.com/maragudk/gomponents/tree/main/internal/examples/app">source code</a> to see how it’s structured.`)), Ul(Map(items, func(s string) Node { return Li(Text(s)) |