Contact form (php backend not done)

This commit is contained in:
Saahil dutta 2024-06-22 16:56:11 -04:00
parent 9e71bfc6ed
commit 35a0df789a
2 changed files with 97 additions and 0 deletions

View file

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