handle data and change design page about-us and contact-us

This commit is contained in:
Ehsan
2025-05-12 22:33:18 +03:30
parent 51396dc02b
commit 405c66d100
7 changed files with 52 additions and 19 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
function ContentContact({ text, children, url }) {
function ContentContact({ text, children, url, label }) {
const openURL = (url) => window.open(url);
return (
@@ -10,7 +10,7 @@ function ContentContact({ text, children, url }) {
{children}
</div>
<p className="text-[#FFF] text-[14px] md:text-[18px] sm:text-[16px] lg:text-[20px] font-normal">
{text}
{label}<span dir="ltr">{text}</span>
</p>
</li>
);