About Page done

This commit is contained in:
Saahil dutta 2024-06-20 00:08:44 -04:00
parent 19a02bdb7d
commit 5a39355ca1
12 changed files with 309 additions and 29 deletions

View file

@ -5,6 +5,8 @@ import InfogramBelowMain from './components/infobelowmain'
import { HashRouter } from './components/HashRouter'
import Route from './components/HashRouter/Route'
import AboutPage from './components/AboutPage'
import SkillSet from './components/AboutPage/SkillSet'
import GithubStats from './components/AboutPage/Github'
// import logo from './logo.svg';
// import './App.css';
@ -16,7 +18,11 @@ function App () {
<InfogramBelowMain />
<br />
</div>} />
<Route path='#/about' component={<AboutPage />} />
<Route path='#/about' component={<>
<AboutPage />
<SkillSet />
<GithubStats />
</>} />
</HashRouter>
)
}