header part update , translation issue fixed

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-11-18 14:33:38 +05:00
parent 8a2708a03a
commit 30e347ba65
6 changed files with 43 additions and 73 deletions

View File

@@ -0,0 +1,14 @@
'use client'
import React from 'react'
import { useTranslation } from 'react-i18next'
export default function Time() {
const {t} = useTranslation();
return (
<div dir='ltr' className='icon_animation2 fixed bottom-10 right-20 z-10 rounded-[50%] bg-primary p-5 text-lg text-secondary flex flex-col items-center justify-center'>
<p>{t('work_day_title')}</p>
<p>24/7</p>
</div>
)
}