Compare commits

...

5 commits

Author SHA1 Message Date
zeon-neon[bot]
5dd40519f7
enhancement(lint): Fix lint errors for src/App.tsx
Some checks are pending
publish / publish-docker-image (push) Waiting to run
Remote Deploy / Build & deploy (push) Waiting to run
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-17 23:49:14 +00:00
4cdc45eb88
Update App.tsx (#17)
<!--
hint: follow the conventional commits
look at CONTRIBUTING.md
make sure this repo would take a PR.
-->

## delete me
2025-06-17 19:49:10 -04:00
zeon-neon[bot]
9712bdcb51
enhancement(lint): Fix lint errors for src/components/ReWork/index.tsx
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-17 23:24:10 +00:00
zeon-neon[bot]
179ffbe730
enhancement(lint): Fix lint errors for src/App.tsx
Co-authored-by: NeonGamerBot-QK <neon@saahild.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
2025-06-17 23:24:09 +00:00
a9e74f983e
feat: redoing aa (#16)
## Only merge when the new version has actually been created (branch
wise)
2025-06-17 19:23:53 -04:00
3 changed files with 36 additions and 31 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -1,34 +1,19 @@
import React from 'react' import React from "react";
import Main from './components/main' import Main from "./components/main";
import Navbar from './components/navbar' import Navbar from "./components/navbar";
import InfogramBelowMain from './components/infobelowmain' import InfogramBelowMain from "./components/infobelowmain";
import { HashRouter } from './components/HashRouter' import { HashRouter } from "./components/HashRouter";
import Route from './components/HashRouter/Route' import Route from "./components/HashRouter/Route";
import AboutPage from './components/AboutPage' //import AboutPage from "./components/AboutPage";
import SkillSet from './components/AboutPage/SkillSet' //import SkillSet from "./components/AboutPage/SkillSet";
import GithubStats from './components/AboutPage/Github' //import GithubStats from "./components/AboutPage/Github";
import Projects from './components/Projects' //import Projects from "./components/Projects";
import Page404 from './components/static/404' import Page404 from "./components/static/404";
import ContactPage from './components/ContactPage' //import ContactPage from "./components/ContactPage";
import ReWork from "./components/ReWork";
function App ({ analytics }: any) { function App({ analytics }: any) {
return ( return <ReWork />;
<HashRouter>
<Route path={'#/'} index component={<div style={{ zIndex: 9999 }}>
<Main />
<InfogramBelowMain />
<br />
</div>} />
<Route path='#/about' component={<>
<AboutPage />
<SkillSet />
<GithubStats />
</>} />
<Route path='#/projects' component={<Projects />} />
<Route path='#/contact' component={<ContactPage analytics={analytics} />} />
<Route path='*' component={<Page404 />} />
</HashRouter>
)
} }
export default App export default App;

View file

@ -0,0 +1,20 @@
export default function ReWork() {
return (
<div>
<div className="hero bg-base-200 min-h-screen">
<div className="hero-content text-center">
<div className="max-w-md">
<h1 className="text-5xl font-bold">🚧 Being redone 🚧</h1>
<p className="py-6">
Hiii this site is currently being re done, until then visit my
retro site!
</p>
<a className="btn btn-primary" href="https://saahild.com/retro">
Retro site
</a>
</div>
</div>
</div>
</div>
);
}