From a1571bbb629c385add6a8be320a0b6e2405f40b7 Mon Sep 17 00:00:00 2001 From: Ehsan Date: Thu, 12 Sep 2024 02:40:03 +0330 Subject: [PATCH] design head and search page turns --- components/icons/ArrowBottomP.js | 9 ++++ components/icons/ExportP.js | 11 +++++ components/layoutPanel/sidebar/index.js | 5 +- components/panel/turns/head/Date.js | 23 +++++++++ components/panel/turns/head/SearchDoctor.js | 53 +++++++++++++++++++++ components/panel/turns/head/index.js | 16 +++++++ components/panel/turns/index.js | 6 ++- 7 files changed, 120 insertions(+), 3 deletions(-) create mode 100644 components/icons/ArrowBottomP.js create mode 100644 components/icons/ExportP.js create mode 100644 components/panel/turns/head/Date.js create mode 100644 components/panel/turns/head/SearchDoctor.js create mode 100644 components/panel/turns/head/index.js diff --git a/components/icons/ArrowBottomP.js b/components/icons/ArrowBottomP.js new file mode 100644 index 0000000..de64a65 --- /dev/null +++ b/components/icons/ArrowBottomP.js @@ -0,0 +1,9 @@ +function ArrowBottomP() { + return ( + + + + ) +} + +export default ArrowBottomP \ No newline at end of file diff --git a/components/icons/ExportP.js b/components/icons/ExportP.js new file mode 100644 index 0000000..418e188 --- /dev/null +++ b/components/icons/ExportP.js @@ -0,0 +1,11 @@ +function ExportP() { + return ( + + + + + + ) +} + +export default ExportP \ No newline at end of file diff --git a/components/layoutPanel/sidebar/index.js b/components/layoutPanel/sidebar/index.js index 04926e8..cd62311 100644 --- a/components/layoutPanel/sidebar/index.js +++ b/components/layoutPanel/sidebar/index.js @@ -2,15 +2,16 @@ import LogoutOrangeP from "@/components/icons/LogoutOrangeP"; import LogoPanel from "@/components/icons/LogoPanel"; import { Button } from "@mui/material"; import Links from "./Links"; +import Link from "next/link"; function Sidebar() { return (