about summary refs log tree commit diff stats
path: root/internal/examples/app/html
diff options
context:
space:
mode:
Diffstat (limited to 'internal/examples/app/html')
-rw-r--r--internal/examples/app/html/about.go4
-rw-r--r--internal/examples/app/html/components.go6
-rw-r--r--internal/examples/app/html/home.go6
3 files changed, 8 insertions, 8 deletions
diff --git a/internal/examples/app/html/about.go b/internal/examples/app/html/about.go
index 37b797f..61a5001 100644
--- a/internal/examples/app/html/about.go
+++ b/internal/examples/app/html/about.go
@@ -3,8 +3,8 @@ package html
 import (
 	"time"
 
-	. "github.com/maragudk/gomponents"
-	. "github.com/maragudk/gomponents/html"
+	. "maragu.dev/gomponents"
+	. "maragu.dev/gomponents/html"
 )
 
 func AboutPage() Node {
diff --git a/internal/examples/app/html/components.go b/internal/examples/app/html/components.go
index 25880a3..ad5d582 100644
--- a/internal/examples/app/html/components.go
+++ b/internal/examples/app/html/components.go
@@ -1,9 +1,9 @@
 package html
 
 import (
-	. "github.com/maragudk/gomponents"
-	. "github.com/maragudk/gomponents/components"
-	. "github.com/maragudk/gomponents/html"
+	. "maragu.dev/gomponents"
+	. "maragu.dev/gomponents/components"
+	. "maragu.dev/gomponents/html"
 )
 
 func page(title string, children ...Node) Node {
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))