about summary refs log tree commit diff stats
path: root/html
diff options
context:
space:
mode:
Diffstat (limited to 'html')
-rw-r--r--html/attributes.go2
-rw-r--r--html/attributes_test.go6
-rw-r--r--html/elements.go2
-rw-r--r--html/elements_test.go6
4 files changed, 8 insertions, 8 deletions
diff --git a/html/attributes.go b/html/attributes.go
index 6787cf8..7748e0e 100644
--- a/html/attributes.go
+++ b/html/attributes.go
@@ -1,7 +1,7 @@
 package html
 
 import (
-	g "github.com/maragudk/gomponents"
+	g "maragu.dev/gomponents"
 )
 
 func Async() g.Node {
diff --git a/html/attributes_test.go b/html/attributes_test.go
index 3eb0252..8f72e41 100644
--- a/html/attributes_test.go
+++ b/html/attributes_test.go
@@ -4,9 +4,9 @@ import (
 	"fmt"
 	"testing"
 
-	g "github.com/maragudk/gomponents"
-	. "github.com/maragudk/gomponents/html"
-	"github.com/maragudk/gomponents/internal/assert"
+	g "maragu.dev/gomponents"
+	. "maragu.dev/gomponents/html"
+	"maragu.dev/gomponents/internal/assert"
 )
 
 func TestBooleanAttributes(t *testing.T) {
diff --git a/html/elements.go b/html/elements.go
index 86cfbd4..efc83df 100644
--- a/html/elements.go
+++ b/html/elements.go
@@ -8,7 +8,7 @@ package html
 import (
 	"io"
 
-	g "github.com/maragudk/gomponents"
+	g "maragu.dev/gomponents"
 )
 
 // Doctype returns a special kind of [g.Node] that prefixes its sibling with the string "<!doctype html>".
diff --git a/html/elements_test.go b/html/elements_test.go
index 00639b9..0b9dd02 100644
--- a/html/elements_test.go
+++ b/html/elements_test.go
@@ -5,9 +5,9 @@ import (
 	"fmt"
 	"testing"
 
-	g "github.com/maragudk/gomponents"
-	. "github.com/maragudk/gomponents/html"
-	"github.com/maragudk/gomponents/internal/assert"
+	g "maragu.dev/gomponents"
+	. "maragu.dev/gomponents/html"
+	"maragu.dev/gomponents/internal/assert"
 )
 
 type erroringWriter struct{}