diff --git a/src/app/(web)/account/page.jsx b/src/app/(web)/account/page.jsx index 2eff506..c3371be 100644 --- a/src/app/(web)/account/page.jsx +++ b/src/app/(web)/account/page.jsx @@ -2,7 +2,11 @@ import { useState, useEffect } from 'react'; import axios from 'axios'; import { useUser } from '@clerk/clerk-react'; -import { Button, Input, Label, Card, CardHeader, CardBody, CardFooter } from 'components/ui'; +import { Button } from '../../../components/ui/button'; +import { Input } from '../../../components/ui/input'; +import { Label } from '../../../components/ui/label'; +import { Card, CardHeader, CardContent, CardFooter } from '../../../components/ui/card'; + const AccountPage = () => { const { user } = useUser(); @@ -67,7 +71,7 @@ const AccountPage = () => {

Account Page

- +

{userData.name}

@@ -104,7 +108,7 @@ const AccountPage = () => {

Edit Patient: {selectedPatient.name}

- +
{medications.map((medication, index) => ( @@ -141,7 +145,7 @@ const AccountPage = () => { onChange={handleDiagnosesChange} />
-
+ @@ -149,7 +153,7 @@ const AccountPage = () => { )}
)} -
+ );