about summary refs log tree commit diff stats
path: root/internal/examples/app/html/home.go
diff options
context:
space:
mode:
authorMarkus Wüstenberg2024-10-03 11:32:52 +0200
committerGitHub2024-10-03 11:32:52 +0200
commitc094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8 (patch)
tree00a6112bbe2907ff0aa1f3b3b3ea186dd73ed368 /internal/examples/app/html/home.go
parentfe24f0575214093cc72201ecc1cc463865dcb1e2 (diff)
downloadgomponents-c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8.tar.lz
gomponents-c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8.tar.zst
gomponents-c094266ccbc2cb4ebac4e2f2f6f9aee5c5740db8.zip
Fix example app to use maragu.dev/gomponents module path (#216)
Diffstat (limited to 'internal/examples/app/html/home.go')
-rw-r--r--internal/examples/app/html/home.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/examples/app/html/home.go b/internal/examples/app/html/home.go
index a3d729b..c06aa66 100644
--- a/internal/examples/app/html/home.go
+++ b/internal/examples/app/html/home.go
@@ -1,8 +1,8 @@
 package html
 
 import (
-	. "github.com/maragudk/gomponents"
-	. "github.com/maragudk/gomponents/html"
+	. "maragu.dev/gomponents"
+	. "maragu.dev/gomponents/html"
 )
 
 func HomePage(items []string) Node {
@@ -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://github.com/maragudk/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://maragu.dev/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))