From 20080dc289c0c482eb5f9cea59dcaa676c1ca309 Mon Sep 17 00:00:00 2001 From: mintpic dev <108204467+mintpic@users.noreply.github.com> Date: Sat, 14 Dec 2024 15:02:30 -0500 Subject: [PATCH] Commit new14456 --- src/pages/index.tsx | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ab10a29..007b8ea 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -5,6 +5,7 @@ import { Input } from '../components/input'; import { useHistory } from '../components/history/hook'; import { History } from '../components/history/History'; import { banner } from '../utils/bin'; +import Link from 'next/link'; interface IndexPageProps { inputRef: React.MutableRefObject; @@ -41,7 +42,24 @@ const IndexPage: React.FC = ({ inputRef }) => { {config.title} -
+ {/* Header */} +
+ {/* Left Link */} + + nullshift.xyz + + + {/* Right Button */} + + Go to Page + +
+ + {/* Main Content */} +
@@ -57,7 +75,15 @@ const IndexPage: React.FC = ({ inputRef }) => { clearHistory={clearHistory} />
-
+ + + {/* Footer */} + ); };