{"version":3,"file":"component---src-pages-us-2022-12-23-signax-rocked-ctf-ksa-tsx-45486a2bb579b7754f30.js","mappings":"2MAgBA,EAXyD,SAAC,GAGnD,IAFLA,EAEI,EAFJA,UACGC,GACC,YACJ,OACE,4CAAID,UAAWE,GAAAA,CCTE,8BDSYF,IAAgBC,GAC1CA,EAAME,Y,uOEVFC,EAAU,iCACVC,EAAW,kCACXC,EAAW,kCACXC,EAAU,iCCuBrB,EAhBwC,SAAC,GAKlC,IAJLP,EAII,EAJJA,UACAQ,EAGI,EAHJA,GACAC,EAEI,EAFJA,QACAN,EACI,EADJA,SAEA,OACE,mCACEH,UAAWE,GAAAA,CAAGQ,EAAWD,GAAWC,EAAE,MAAMD,GAAYT,GACxDQ,GAAIA,GAEHL,K,0FCEP,EAd0D,SAAC,GAGpD,IAFLQ,EAEI,EAFJA,KACAR,EACI,EADJA,SAEA,OACE,wBAACS,EAAA,EAAD,CAASZ,UCdQ,2CDef,wBAACa,EAAA,EAAD,KACGF,GAAQ,+BAAKX,UCfJ,wCDewBW,GACjCR,M,0GEyFT,UAlGqC,WACnC,OACE,gDACE,wBAAC,IAAD,CACEW,MAAM,qDACNC,YAAY,uFAEd,wBAAC,IAAD,CAAkBJ,KAAK,cACrB,wBAAC,IAAD,CAAYK,QAAQ,KAAKC,MAAM,QAA/B,sDAGA,wBAAC,IAAD,CAAYD,QAAQ,SAApB,sFAIA,+BAAKhB,UAAWU,EAAAA,IACd,wBAAC,EAAAQ,EAAD,CACEC,MAAO,IACPC,IAAI,sEACJC,IAAI,qDACJP,MAAM,qDACNQ,YAAY,UALd,wBAQF,wBAAC,IAAD,CAAYN,QAAQ,SAApB,0WAQA,wBAAC,IAAD,CAAMhB,UAAU,QACd,sFACA,sEACA,gFAEF,wBAAC,IAAD,CAAYgB,QAAQ,SAApB,+EAIA,wBAAC,IAAD,CAAYA,QAAQ,SAApB,0eAUA,wBAAC,IAAD,CAAYA,QAAQ,SAApB,mcASA,+BAAKhB,UAAWU,EAAAA,IACd,wBAAC,EAAAQ,EAAD,CACElB,UAAU,OACVoB,IAAI,sEACJC,IAAI,uDACJP,MAAM,uDACNQ,YAAY,UALd,uBAOA,wBAAC,EAAAJ,EAAD,CACElB,UAAU,OACVoB,IAAI,qEACJC,IAAI,uDACJP,MAAM,uDACNQ,YAAY,UALd,uBAOA,kCACEH,MAAM,MACNI,OAAO,MACPH,IAAI,yFACJN,MAAM,gBACNU,YAAY,IACZC,MAAM,gDACNC,iBAAe,EACfC,UAAU,OAEZ,wBAAC,EAAAT,EAAD,CACElB,UAAU,OACVoB,IAAI,sEACJC,IAAI,uDACJP,MAAM,uDACNQ,YAAY,UALd,4B,qYC7FH,IAIIM,EAAY,gCAGZC,EAAU,8BACVC,EAAa,iCACbC,EAAa,iCAIbC,EAAiB,qCAGjBC,EAAO,2BAGPC,EAAgB,oCAGhBC,EAAgB,oCAEhBC,EAAe,mCACfC,EAAY,gCACZC,EAAW,+BACXC,EAAmB,uCACnBC,EAAgB,oCAChBC,EAAc,kCACdC,EAAsB,2C","sources":["webpack://sgnl-site/./src/components/Common/List/index.tsx","webpack://sgnl-site/./src/components/Common/List/List.module.scss","webpack://sgnl-site/./src/components/Common/Section/Section.module.scss","webpack://sgnl-site/./src/components/Common/Section/index.tsx","webpack://sgnl-site/./src/components/NewsSectionBlock/index.tsx","webpack://sgnl-site/./src/components/NewsSectionBlock/NewsSectionBlock.module.scss","webpack://sgnl-site/./src/pages-us/2022-12-23-signax-rocked-ctf-ksa.tsx","webpack://sgnl-site/./src/pages/news.module.scss"],"sourcesContent":["import React, { HTMLAttributes } from 'react'\nimport cn from 'classnames'\n\nimport * as s from './List.module.scss'\n\nconst List: React.FC> = ({\n className,\n ...props\n}) => {\n return (\n \n )\n}\n\nexport default List\n","// extracted by mini-css-extract-plugin\nexport var wrapper = \"List-module--wrapper--pipEJ\";","// extracted by mini-css-extract-plugin\nexport var section = \"Section-module--section--t2Kke\";\nexport var bg_white = \"Section-module--bg_white--K-nBF\";\nexport var bg_light = \"Section-module--bg_light--kwwQL\";\nexport var bg_dark = \"Section-module--bg_dark--vZSrp\";","import React from 'react'\nimport cn from 'classnames'\n\nimport * as s from './Section.module.scss'\n\ninterface SectionProps {\n className?: string\n bgColor?: 'white' | 'light' | 'dark'\n id?: string\n}\n\nconst Section: React.FC = ({\n className,\n id,\n bgColor,\n children,\n}) => {\n return (\n \n {children}\n \n )\n}\n\nexport default Section\n","import React from 'react'\nimport Section from '../Common/Section'\nimport Container from '../Common/Container'\n\nimport * as s from './NewsSectionBlock.module.scss'\n\ninterface NewsSectionBlockProps {\n date?: string\n}\n\nconst NewsSectionBlock: React.FC = ({\n date,\n children,\n}) => {\n return (\n
\n \n {date &&
{date}
}\n {children}\n
\n
\n )\n}\n\nexport default NewsSectionBlock\n","// extracted by mini-css-extract-plugin\nexport var section = \"NewsSectionBlock-module--section--TD9zu\";\nexport var date = \"NewsSectionBlock-module--date--P8Mos\";","import React from 'react'\nimport { StaticImage } from 'gatsby-plugin-image'\nimport NewsSectionBlock from '../components/NewsSectionBlock'\nimport SEO from '../components/seo'\nimport Typography from '../components/Common/Typography'\nimport List from '../components/Common/List'\n\nimport * as s from '../pages/news.module.scss'\n\nconst SignaxRockedCtfKsa: React.FC = () => {\n return (\n <>\n \n \n \n SIGNAX rocked Construction Technology Festival KSA\n \n \n 2-days Construction Technology Festival KSA took place in Riyadh,\n December, 14-15.\n \n
\n \n
\n \n Forum attracted 500+ delegates, visitors and exhibitors. Abdullah\n Mohammed Albudair, Deputy Minister of Municipal Rural Affairs &\n Housing opened the event. He announced that KSA keeps a course on\n innovations in construction and gave the prizes to SCA’s Contracting\n Excellence Awards winners. The first day consisted of Keynote session\n and 4 tracks including:\n \n \n
  • Design Automation, Innovation, Dfma and Offsite;
  • \n
  • BIM, Virtual Construction & GIS;
  • \n
  • Sustainability, Materials, Digital Twins.
  • \n
    \n \n Second day was devoted to Workshops and SCA’s Saudi Project Networking\n Day.\n \n \n SIGNAX was one of the most active participants having the stand and\n presentations during both days of the event. Petr Manin, SIGNAX\n Regional Director, opened BIM track with «BIM for owners – remote\n supervision of site for enhanced quality, cost, safety and\n construction dynamics control». Roman Ruksha, Account Director,\n provided 1,5 hours «BIM for Developers and Contractors Onsite»\n workshop. SIGNAX stand was extremely popular among the visitors and\n Abdullah Albudair was one of them.\n \n \n Distinguished guests showed interest in the company's developments and\n expressed hope for further cooperation within the framework of KSA\n most important projects. SIGNAX is new to KSA market, at the same\n time, Saudi owners and contractors liked the idea of using digital on\n site and strive to implement these technologies to their processes.\n SIGNAX is fully ready to help them along the way providing\n best-in-class solutions and excellent service.\n \n
    \n \n \n \n \n
    \n
    \n \n )\n}\n\nexport default SignaxRockedCtfKsa\n","// extracted by mini-css-extract-plugin\nexport var section = \"news-module--section--g5uoe\";\nexport var maxContent = \"news-module--maxContent--mpYRW\";\nexport var content = \"news-module--content--v60SD\";\nexport var textTitle = \"news-module--textTitle--nitTa\";\nexport var textLists = \"news-module--textLists--IMoga\";\nexport var disc = \"news-module--disc--AqJ0s\";\nexport var auto = \"news-module--auto--u9wuf\";\nexport var decimal = \"news-module--decimal--+OTUr\";\nexport var check_mark = \"news-module--check_mark--P6DHG\";\nexport var imageBlock = \"news-module--imageBlock--TmnyQ\";\nexport var imageText = \"news-module--imageText--DgNcO\";\nexport var imageFullWidth = \"news-module--imageFullWidth--Rg4vs\";\nexport var imageEvent = \"news-module--imageEvent--y9m8O\";\nexport var imageClickable = \"news-module--imageClickable--wN1YK\";\nexport var imageClickable_bottom = \"news-module--imageClickable_bottom--6ol01\";\nexport var brandButtons = \"news-module--brandButtons--Alw1o\";\nexport var text = \"news-module--text--5E1Q6\";\nexport var video = \"news-module--video--6ohKO\";\nexport var videoSize = \"news-module--videoSize--WLsUN\";\nexport var authorWrapper = \"news-module--authorWrapper--pKcye\";\nexport var author = \"news-module--author--F1DUO\";\nexport var special_offer_image = \"news-module--special_offer_image--2F8hV\";\nexport var columnWrapper = \"news-module--columnWrapper--805HQ\";\nexport var boxShadow = \"news-module--boxShadow--zn30v\";\nexport var youtubeVideo = \"news-module--youtubeVideo---NENF\";\nexport var imageWrap = \"news-module--imageWrap--wN+Es\";\nexport var textWrap = \"news-module--textWrap--sagCF\";\nexport var textWrapCentered = \"news-module--textWrapCentered--Gc1WE\";\nexport var margin_top_48 = \"news-module--margin_top_48--icjNV\";\nexport var contentWrap = \"news-module--contentWrap--+JWDB\";\nexport var productLinksWrapper = \"news-module--productLinksWrapper--s8uye\";"],"names":["className","props","cn","children","section","bg_white","bg_light","bg_dark","id","bgColor","s","date","Section","Container","title","description","variant","color","S","width","src","alt","placeholder","height","frameBorder","allow","allowFullScreen","scrolling","textLists","decimal","check_mark","imageBlock","imageClickable","text","authorWrapper","columnWrapper","youtubeVideo","imageWrap","textWrap","textWrapCentered","margin_top_48","contentWrap","productLinksWrapper"],"sourceRoot":""}