feat: redoing aa

This commit is contained in:
Saahil dutta 2025-06-02 05:01:49 -04:00
parent c55d4ac9fc
commit fd7baf2c44
Signed by: neon
GPG key ID: 8A8B64515254CFC6
3 changed files with 17 additions and 0 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -10,8 +10,10 @@ import GithubStats from './components/AboutPage/Github'
import Projects from './components/Projects'
import Page404 from './components/static/404'
import ContactPage from './components/ContactPage'
import ReWork from './components/ReWork'
function App ({ analytics }: any) {
return <ReWork />
return (
<HashRouter>
<Route path={'#/'} index component={<div style={{ zIndex: 9999 }}>

View file

@ -0,0 +1,15 @@
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>;
}