translation done , services page added backend service detail page added

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-02-17 11:44:26 +05:00
parent 1d34ea1d47
commit 259af77384
10 changed files with 83 additions and 42 deletions

View File

@@ -63,8 +63,8 @@ export function Footer() {
if (email) {
// Telefon raqamni tozalash (faqat raqamlar)
const cleanPhone = email.replace(/\D/g, "");
console.log("without 998: ",cleanPhone.slice(3))
formRequest.mutate({ number: Number(cleanPhone.slice(3))});
console.log("without 998: ", cleanPhone.slice(3));
formRequest.mutate({ number: Number(cleanPhone.slice(3)) });
}
};
@@ -76,7 +76,7 @@ export function Footer() {
"linear-gradient(to top right, #452811 0%, #000000 20%, #000000 40%, #000000 60%, #000000 80%, #000000 100%)",
}}
>
{/* Newsletter Section for gitea */}
{/* Newsletter Section */}
<div className=" absolute w-full -top-40 px-4 py-12 md:py-16">
<div className="mx-auto max-w-6xl">
<div className="rounded-2xl bg-red-600 px-6 py-8 md:flex lg:flex-row flex-col max-lg:gap-5 md:items-center lg:justify-between justify-center md:px-10 md:py-12">
@@ -241,18 +241,28 @@ export function Footer() {
{/* Copyright Section */}
<div className="border-t border-gray-800 px-4 py-8">
<div className="mx-auto max-w-6xl">
<div className="font-almarai flex flex-col justify-center gap-4 text-lg text-gray-400 md:flex-row md:items-center">
<a href="http://felix-its.uz/" className="hover:text-red-600">
{t("footer.create", { name: "Felix-its.uz" })}
</a>
{/* <div className="flex gap-6">
<a href="#terms" className="hover:text-white">
Terms & Conditions
</a>
<a href="#privacy" className="hover:text-white">
Privacy Policy
</a>
</div> */}
<div className="font-almarai flex flex-col justify-between gap-4 text-lg text-gray-400 md:flex-row md:items-center">
{locale === "uz" ? (
<div className="flex gap-2 ">
<a
href="http://felix-its.uz/"
className="hover:text-red-600 hover:cursor-pointer text-blue-300 underline"
>
Felix-its.uz
</a>
<p>- Jamoasi tomonidan ishlab chiqilgan</p>
</div>
) : (
<div className="flex gap-2">
{locale === "ru" ? <p>Разработано -</p> : <p>Created by - </p>}
<a
href="http://felix-its.uz/"
className="hover:text-red-600 hover:cursor-pointer text-blue-300 underline"
>
Felix-its.uz
</a>
</div>
)}
</div>
</div>
</div>