change date-picker & add page login-verify & account & new user & payment

This commit is contained in:
Ehsan
2024-08-26 20:04:33 +03:30
parent 31ed32fc21
commit 7925493681
34 changed files with 564 additions and 60 deletions
+16
View File
@@ -0,0 +1,16 @@
import AccountPage from '@/components/account';
import doctors from '@/data/doctors.json';
import Layout from '@/components/layout';
function Account({ params: { slug } }) {
const doctor = doctors.find(item => item.id === +slug);
return (
<Layout title='وبلاگ ها' name='blogs' disableFooter={true}>
<AccountPage doctor={doctor} />
</Layout>
)
}
export default Account