last update

This commit is contained in:
Ehsan
2025-05-11 12:13:23 +03:30
parent f2e880c721
commit e4771c4e2f
13 changed files with 79 additions and 84 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ import Image from "next/image";
import Link from "next/link";
import React from "react";
function Logo({ isAbsolute }) {
function Logo({ isAbsolute, matchedCity }) {
return (
<Link href="/" className={isAbsolute ? "absolute right-[32px] top-0" : ""}>
<div className="flex items-center justify-start gap-[5px]">
@@ -14,7 +14,7 @@ function Logo({ isAbsolute }) {
alt="logo"
/>
<p className="text-[#526CAC] text-[14px] lg:text-[16px] font-bold font-kalame">
نوبت ۷۲۴
{matchedCity?.site_name || 'نوبت ۷۲۴'}
</p>
</div>
</Link>