// Modules import { useEffect, useState } from 'react'; import { Link } from 'react-router-dom'; // Components import Hero from '../components/Hero'; import SectionTitle from '../components/SectionTitle'; import NewsPost from '../components/NewsPost'; import DocumentLink from '../components/DocumentLink'; import VideoPlayer from '../components/VideoPlayer'; import DataChart from '../components/DataChart'; // Icons import arrow from '../assets/icons/arrow.svg'; import { Api } from '../helpers/api'; import { dateReverse } from '../helpers/functions'; const Home = ({ lang, setPostId }) => { // Sets const [newsData, setNewsData] = useState(); const [videoData, setVideoData] = useState(); useEffect(() => { // Video fetch const VideoApi = new Api('https://tmex.gov.tm:8765/api/video', videoData, setVideoData).get({ 'X-Localization': lang, }); // News fetch const NewsApi = new Api('https://tmex.gov.tm:8765/api/news', newsData, setNewsData).get({ 'X-Localization': lang, }); // Scroll to top window.scrollTo(0, 0); }, [lang]); return (
{/* Hero section */} {/* Hero section ./ =========== */} {/* About section */}
{lang === 'ru' ? (

Государственная товарно-сырьевая биржа Туркменистана была создана Указом Президента Туркменистана от 29 июля 1994 года и является важнейшим экономическим институтом страны. Биржа выполняет функцию главного органа государственного регулирования экспортно-импортных операций. Отлаженный механизм функционирования позволяет ей успешно интегрироваться в международную экономическую систему.

link

Посмотреть котировки

link

Посмотреть тарифы и сборы

) : null} {lang === 'tm' ? (

Türkmenistanyň Döwlet haryt we çig mal biržasy (TDHÇMB) Türkmenistanyň Prezidentiniň 1994-nji ýylyň 29-njy iýulyndaky Karary bilen döredildi we ýurduň iň möhüm ykdysady instituty bolup durýar. Birža eksport we import amallaryny amala aşyrmakda döwleti düzgünleşdirýän esasy edaranyň wezipesini ýerine ýetirýär. Sazlaşykly döredilen mehanizm halkara ykdysady ulgamyna üstünlikli birleşmäge mümkinçilik berýär. TDHÇMB-nyň işiniň gerimi örän giňdir – dürli haryt we maddy baýlyklary (intellektual eýeçiligi hasaba almazdan), sungat eserlerini we gozgalmaýan emläkleri kabul edip satýan köptaraplaýyn biržasydyr.

link

Kotirowkalara geç

link

Nyrhlar we ýygymlar

) : null} {lang === 'en' ? (

The State Commodity and Raw Materials Exchange of Turkmenistan (SCRMET) was established by the Decree of the President of Turkmenistan on July 29, 1994 and is the most important economic institution of the country. The Exchange functions as the main body of state regulation of export-import operations. Its smoothly functioning mechanism enables it to successfully integrate into the international economic system.

link

View Quotations

link

View tariffs and fees

) : null}
{videoData ? : null} {/* */}
{/* About section ./========= */} {/* Chart section */} {/* Chart section ./========= */} {/* News section ./========= */}
{ newsData ? newsData.data.map((news, index) => { if (index <= 2) { return ( ); } else { return null; } }) : '' //loader }
{/* News section ./========= */} {/* Documents section ./========= */} {/*
{ docsData ? docsData.data.map((doc) => { return ; }) : '' //loader }
*/} {/* Documents section ./========= */}
); }; export default Home;