This commit is contained in:
Saahil dutta 2024-06-22 16:20:57 -04:00
parent c47ac96685
commit 9e71bfc6ed
6 changed files with 53 additions and 5 deletions

View file

@ -8,6 +8,7 @@ import AboutPage from './components/AboutPage'
import SkillSet from './components/AboutPage/SkillSet'
import GithubStats from './components/AboutPage/Github'
import Projects from './components/Projects'
import Page404 from './components/static/404'
// import logo from './logo.svg';
// import './App.css';
@ -25,6 +26,7 @@ function App () {
<GithubStats />
</>} />
<Route path='#/projects' component={<Projects />} />
<Route path='*' component={<Page404 />} />
</HashRouter>
)
}