Skip to content

Commit

Permalink
Merge pull request #569 from AyushSharma72/steps
Browse files Browse the repository at this point in the history
added steps in the form
  • Loading branch information
Luson045 authored Oct 30, 2024
2 parents 4270476 + 9cf7907 commit 9d036f8
Show file tree
Hide file tree
Showing 5 changed files with 352 additions and 215 deletions.
2 changes: 1 addition & 1 deletion client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@vercel/analytics": "^1.3.1",
"antd": "^5.21.2",
"antd": "^5.21.5",
"aos": "^3.0.0-beta.6",
"axios": "^1.7.7",
"chart.js": "^4.4.4",
Expand Down
8 changes: 6 additions & 2 deletions client/src/components/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import Success from '../pages/Success';
import Home from '../pages/Home';
import HospitalDetails from '../pages/HospitalDetail';
import HospitalAppointments from '../pages/HospitalPanal';
import BusinessContactForm from "./BusinessContactForm";
import ForgotPassword from "./ForgotPassword";
import BusinessContactForm from './BusinessContactForm';
import ForgotPassword from './ForgotPassword';
import PrivateRoute from '../privateroute/privateroute';
import Newsletters from '../pages/Newsletters';

Expand All @@ -48,8 +48,10 @@ function Layout() {
path === '/terms-and-conditions' ||
path === '/Labtest' ||
path === '/blog' ||

path === '/business'||
path === '/forgot-password'||

path === '/newsletter-dashboard'
) {
showNavAndFooter = true;
Expand Down Expand Up @@ -97,7 +99,9 @@ function Layout() {
<Route path="/business" element={<BusinessContactForm />}></Route>
<Route path="/not-found" element={<NotFound />} />
<Route path="*" element={<Navigate to="/not-found" />} />

<Route path="/newsletter-dashboard" element={<Newsletters/>} />

</Routes>
</div>
<Chatbot />
Expand Down
Loading

0 comments on commit 9d036f8

Please sign in to comment.