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 */} + ); };