diff --git a/components/Admin/Navbar/index.jsx b/components/Admin/Navbar/index.jsx
index ccd71f0..2c02e71 100644
--- a/components/Admin/Navbar/index.jsx
+++ b/components/Admin/Navbar/index.jsx
@@ -18,6 +18,7 @@ import {
useColorModeValue,
Icon,
Flex,
+ Stack,
} from "@chakra-ui/react";
import { IoIosNotificationsOutline } from "react-icons/io";
import Link from "next/link";
@@ -34,11 +35,9 @@ import { HiOutlineEnvelope } from "react-icons/hi2";
import { HiMenuAlt2 } from "react-icons/hi";
import { MdOutlineSegment } from "react-icons/md";
import { AiOutlineSetting, AiOutlineSearch } from "react-icons/ai";
-import Logo from "../../shared/Logo";
const Navbar = () => {
const [isMaximized, setIsMaximized] = useState(false);
- const [isBrowserFullscreen, setIsBrowserFullscreen] = useState(false);
const handleMaximizeToggle = () => {
setIsMaximized(!isMaximized);
@@ -69,7 +68,7 @@ const Navbar = () => {
};
return (
- {
zIndex="1"
>
-
-
-
+
+
+
+
+
+
+
-
+
+
{
handleMaximizeToggle={handleMaximizeToggle}
/>
-
-
-
-
+
+
+
+
+
+
+
+
-
+
);
};
diff --git a/components/Admin/Sidebar/index.jsx b/components/Admin/Sidebar/index.jsx
index 4cfa900..3d1ce51 100644
--- a/components/Admin/Sidebar/index.jsx
+++ b/components/Admin/Sidebar/index.jsx
@@ -13,15 +13,14 @@ import Logo from ".././../shared/Logo";
const Sidebar = () => {
return (
-
-
-
+
);
};
diff --git a/sections/OurServices/index.jsx b/sections/OurServices/index.jsx
index de4ceeb..1e20a19 100644
--- a/sections/OurServices/index.jsx
+++ b/sections/OurServices/index.jsx
@@ -60,13 +60,8 @@ const features = [
];
const Features = () => {
-
return (
-
+
{
textAlign="center"
color={useColorModeValue("gray.800", "gray.800")}
>
-
+
Tüm Hizmetleri Görüntüle
@@ -144,7 +139,11 @@ const Features = () => {
};
function OurServices({ targetId }) {
- return ;
+ return (
+ <>
+
+ >
+ );
}
export default OurServices;