13 lines
523 B
TypeScript
13 lines
523 B
TypeScript
|
|
const ContactDetails = () => {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col pl-6 md:text-[22px] text-base text-black font-light font-mw_sans border-l-[6px] border-mblue h-fit min-w-[350px] dark:text-white">
|
||
|
|
<h2 className="md:text-[32px] text-xl font-normal">MAHABAT MÜDIRLIGI</h2>
|
||
|
|
<a href="tel:+99312493705">Phone: +993 12 493705</a>
|
||
|
|
<span>Aşgabat şäheri Oguzhan 13</span>
|
||
|
|
<a href="mailto:mahabat@turkmentv.gov.tm">mahabat@turkmentv.gov.tm</a>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default ContactDetails;
|