Add SUPERCOMMAND component and integrate it into the App; enhance Page with additional text
This commit is contained in:
parent
16414a6b51
commit
e7b464b9fe
3 changed files with 108 additions and 0 deletions
|
|
@ -5,6 +5,7 @@ import NotFound from "./utils/NotFound";
|
|||
import { ThemeProvider } from "@/components/theme-provider";
|
||||
import { useEffect } from "react";
|
||||
import { useNavigate } from "react-router";
|
||||
import SUPERCOMMAND from "@/components/SUPERCOMMAND";
|
||||
|
||||
function TimelineRedirect() {
|
||||
const navigate = useNavigate();
|
||||
|
|
@ -15,6 +16,7 @@ function TimelineRedirect() {
|
|||
export default function App() {
|
||||
return (
|
||||
<ThemeProvider defaultTheme="system">
|
||||
<SUPERCOMMAND />
|
||||
<BrowserRouter>
|
||||
<Routes>
|
||||
<Route path="/" element={<Page />} />
|
||||
|
|
|
|||
|
|
@ -178,6 +178,8 @@ export function Page() {
|
|||
<Timeline />
|
||||
<Seperator />
|
||||
<Contact />
|
||||
<p>Press tab to access easily surf the page</p>
|
||||
<p>But where am I? Who was I? Today is November 8th.</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue