Add SUPERCOMMAND component and integrate it into the App; enhance Page with additional text

This commit is contained in:
암냥 2025-09-09 05:06:29 +09:00
commit e7b464b9fe
3 changed files with 108 additions and 0 deletions

View file

@ -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 />} />

View file

@ -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>
);