diff --git a/website/app/vt/layout.tsx b/website/app/vt/layout.tsx index c67ca1f15..36de63199 100644 --- a/website/app/vt/layout.tsx +++ b/website/app/vt/layout.tsx @@ -1,13 +1,21 @@ +import Image from "next/image"; +import Link from "next/link"; import "@/styles/code.css"; export default function Layout({ children }: { children: React.ReactNode }) { return ( -
-
-
- {children} +
+
+ + Ghostty Logo + +
+ +
+
+ {children} +
-
); }