diff --git a/app/[lang]/layout.tsx b/app/[lang]/layout.tsx
index 7cd05d5..879cad0 100644
--- a/app/[lang]/layout.tsx
+++ b/app/[lang]/layout.tsx
@@ -4,6 +4,8 @@ import Navbar from "@/components/nav_foot/navbar";
import Footer from "@/components/nav_foot/footer";
import Contact from "@/components/pageParts/contact";
import UpScrollIcon from "@/components/lib_components/upScroll";
+import { Suspense } from "react";
+import Time from "@/components/lib_components/time";
export default async function LangLayout({
children,
@@ -17,7 +19,9 @@ export default async function LangLayout({
return (
-
+
+
+
{children}
+
);
diff --git a/app/globals.css b/app/globals.css
index b5de9cd..e765335 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -60,10 +60,23 @@ body {
box-shadow: 0px 0px 15px 5px var(--secondary);
}
}
+
+@keyframes icon_animatsion_tool2 {
+ from{
+ box-shadow:none;
+ }to{
+ box-shadow: 0px 0px 15px 5px var(--primary);
+ }
+}
+
.icon_animation{
animation: icon_animatsion_tool 2s infinite alternate-reverse ;
}
+.icon_animation2{
+ animation: icon_animatsion_tool2 0.9s infinite alternate-reverse ;
+}
+
@media(max-width:640px){
/* 🟠 Sariq blok trapezoid shakl */
.clip-trapezoid {
diff --git a/components/lib_components/time.tsx b/components/lib_components/time.tsx
new file mode 100644
index 0000000..803bf22
--- /dev/null
+++ b/components/lib_components/time.tsx
@@ -0,0 +1,14 @@
+'use client'
+
+import React from 'react'
+import { useTranslation } from 'react-i18next'
+
+export default function Time() {
+ const {t} = useTranslation();
+ return (
+
+
{t('work_day_title')}
+
24/7
+
+ )
+}
diff --git a/components/nav_foot/header.tsx b/components/nav_foot/header.tsx
index 4eb3503..bf4e115 100644
--- a/components/nav_foot/header.tsx
+++ b/components/nav_foot/header.tsx
@@ -1,7 +1,11 @@
+"use client";
+
import { FaLocationDot } from "react-icons/fa6";
import Text from "../lib_components/text";
+import { useTranslation } from "react-i18next";
export default function Header() {
+ const { t } = useTranslation();
return (
-
-
-