Skip to content

Commit

Permalink
✨ feat(prenatal-care): Create basic prenatal care component
Browse files Browse the repository at this point in the history
- Implement initial prenatal care component
- Add functionality and layout for prenatal care information

Footer: 0.1.3
  • Loading branch information
fasakinhenry committed Jun 22, 2024
1 parent 8ef2cac commit 1630d4b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import LoginPage from './pages/LoginPage';
import SignupPage from './pages/SignupPage';
import Dashboard from './components/Dashboard';
import Search from './components/Search';
import Appointments from './components/Appointments';
import Messages from './components/Messages';
import Profile from './components/Profile';
import Appointments from './components/Appointments';
import Medication from './components/Medication';
import Records from './components/Records';
import Consultants from './components/Consultants';
Expand All @@ -36,8 +37,9 @@ const App = () => (
<Route element={<DashboardLayout />}>
<Route path='/dashboard' element={<Dashboard />} />
<Route path='/search' element={<Search />} />
<Route path='/appointments' element={<Appointments />} />
<Route path='/messages' element={<Messages />} />
<Route path='/profile' element={<Profile />} />
<Route path='/appointments' element={<Appointments />} />
<Route path='/medication' element={<Medication />} />
<Route path='/records' element={<Records />} />
<Route path='/consultants' element={<Consultants />} />
Expand Down
12 changes: 12 additions & 0 deletions src/components/PrenatalCare.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';

const PrenatalCare = () => {
return (
<div>
<h1 className="text-2xl font-bold mb-4">Prenatal Care</h1>
{/* Add prenatal care information and resources here */}
</div>
);
};

export default PrenatalCare;
2 changes: 2 additions & 0 deletions src/components/Profile.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ const Profile = () => {
</div>
);
};

export default Profile;

0 comments on commit 1630d4b

Please sign in to comment.