From 8f1cc5fab396794756391d4b688586f0024a1f74 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 6 Oct 2023 07:35:09 -0700 Subject: [PATCH] website: put ghostty icon in top --- website/app/vt/layout.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) 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} +
-
); }