diff --git a/bench/index.js b/bench/index.js
index 321f573..6485288 100644
--- a/bench/index.js
+++ b/bench/index.js
@@ -1,13 +1,11 @@
/* eslint-disable no-unused-vars */
-
-import { html } from "../src/index.js";
+import { html } from "ghtml";
import { Bench } from "tinybench";
import { writeFileSync } from "node:fs";
import { Buffer } from "node:buffer";
-let result = "";
-
const bench = new Bench({ time: 500 });
+let result = "";
bench.add("simple HTML formatting", () => {
result = html`
Hello, world!
`;
diff --git a/bin/example/assets/script.js b/bin/example/assets/script.js
index cdf6b44..ed212d9 100644
--- a/bin/example/assets/script.js
+++ b/bin/example/assets/script.js
@@ -1 +1 @@
-globalThis.console.warn("Hello World!");
+globalThis.console.log("Hello World!");
diff --git a/bin/example/routes/index.js b/bin/example/routes/index.js
index 041ae89..8a1ebfc 100644
--- a/bin/example/routes/index.js
+++ b/bin/example/routes/index.js
@@ -1,5 +1,3 @@
-/* eslint-disable n/no-missing-import, require-await */
-
import { html } from "ghtml";
export default async (fastify) => {
@@ -21,7 +19,7 @@ export default async (fastify) => {
!${inner}
-