mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-28 17:14:07 +00:00
Compare commits
5 commits
c55d4ac9fc
...
5dd40519f7
Author | SHA1 | Date | |
---|---|---|---|
|
5dd40519f7 | ||
4cdc45eb88 | |||
|
9712bdcb51 | ||
|
179ffbe730 | ||
a9e74f983e |
3 changed files with 36 additions and 31 deletions
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
47
src/App.tsx
47
src/App.tsx
|
@ -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;
|
||||||
|
|
20
src/components/ReWork/index.tsx
Normal file
20
src/components/ReWork/index.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue