diff --git a/src/components/tool/guide/Guide.js b/src/components/tool/guide/Guide.js
index b9e9684b..547162bd 100644
--- a/src/components/tool/guide/Guide.js
+++ b/src/components/tool/guide/Guide.js
@@ -11,30 +11,32 @@ import { createContext, useContext } from "react";
export function GuideHeader({ title, subtitle, logo, alt, link }) {
return (
-
-
-
- {title}
-
+ <>
+
+
+
+ {title}
+
+
{subtitle && (
{subtitle}
)}
-
+ >
);
}